summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorJuha Kukkonen <ext-juha.kukkonen@nokia.com>2012-02-14 08:22:43 +0200
committerJuha Kukkonen <ext-juha.kukkonen@nokia.com>2012-02-14 08:22:43 +0200
commit969ab78058bc1e2b8c60d7a930cf6bda15c6ad1a (patch)
tree4454033e7fc49d78f796cc84f7a916ada00d99cd /plugins
parentac04944e5d9264c3d8afa38ee24cbb83b2c64748 (diff)
Fix build break in symbiansim component on Symbian
CI system uses public SDKs and not all SDK (e.g. 5th Ed) contain Telephony Configuration API headers. Changed implementation to use hard coded values as it's done elsewhere in contacts plugin. Reviewed-by: TrustMe
Diffstat (limited to 'plugins')
-rw-r--r--plugins/contacts/symbiansim/src/cntsymbiansimengine.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/plugins/contacts/symbiansim/src/cntsymbiansimengine.cpp b/plugins/contacts/symbiansim/src/cntsymbiansimengine.cpp
index 1d409928ce..aa6eefd6b4 100644
--- a/plugins/contacts/symbiansim/src/cntsymbiansimengine.cpp
+++ b/plugins/contacts/symbiansim/src/cntsymbiansimengine.cpp
@@ -54,7 +54,16 @@
#include <QDebug>
#include <centralrepository.h>
-#include <telconfigcrkeys.h>
+
+// Telephony Configuration API
+// Keys under this category are used in defining telephony configuration.
+const TUid KCRUidTelConfiguration = {0x102828B8};
+// Amount of digits to be used in contact matching.
+// This allows a customer to variate the amount of digits to be matched.
+const TUint32 KTelMatchDigits = 0x00000001;
+// Allows a customer to variate if dynamic match used in contact matching.
+// Legal values: true/false. Default value: true.
+const TUint32 KTelDynamicMatching = 0x00000002;
// Default match length
const TInt KDefaultMatchLength(7);