mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 21:56:43 +08:00
refs #207, renamed CValueMap to CIndexVariantMap.
* The map will be used with CSimulaorInfo to transfer a variable number of setting information about the flight simulator. It is being used, because it is already DBus and tupel compliant. The new name better fits its purpose. * Add == operator for CIndexVariantMap (ambiguity error with tupels)
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
#include "networkallclasses.h"
|
||||
#include "settingsallclasses.h"
|
||||
#include "hwallclasses.h"
|
||||
#include "valuemap.h"
|
||||
#include "indexvariantmap.h"
|
||||
#include "statusmessagelist.h"
|
||||
#include "audioallclasses.h"
|
||||
|
||||
@@ -129,7 +129,7 @@ void BlackMisc::registerMetadata()
|
||||
{
|
||||
// !! make sure the first id is correctly returned by
|
||||
// !! firstBlackMetaType
|
||||
CValueMap::registerMetadata();
|
||||
CIndexVariantMap::registerMetadata();
|
||||
|
||||
CStatusMessage::registerMetadata();
|
||||
CStatusMessageList::registerMetadata();
|
||||
@@ -151,7 +151,7 @@ void BlackMisc::registerMetadata()
|
||||
int BlackMisc::firstBlackMetaType()
|
||||
{
|
||||
// must be the first registered above
|
||||
return qMetaTypeId<CValueMap>();
|
||||
return qMetaTypeId<CIndexVariantMap>();
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user