summaryrefslogtreecommitdiff
path: root/config.tests/geoclue/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'config.tests/geoclue/main.cpp')
-rw-r--r--config.tests/geoclue/main.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/config.tests/geoclue/main.cpp b/config.tests/geoclue/main.cpp
index 3a868d70..c286775c 100644
--- a/config.tests/geoclue/main.cpp
+++ b/config.tests/geoclue/main.cpp
@@ -1,5 +1,7 @@
/****************************************************************************
**
+** Copyright (C) 2013 Jolla Ltd.
+** Contact: Aaron McCarthy <aaron.mccarthy@jollamobile.com>
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
@@ -40,13 +42,15 @@
****************************************************************************/
#include <geoclue/geoclue-position.h>
-#include <gconf/gconf-client.h>
+#include <geoclue/geoclue-velocity.h>
int main()
{
GType type = geoclue_position_get_type();
- GConfClient *client = gconf_client_get_default();
- g_object_unref(client);
+ GeocluePosition position;
+
+ type = geoclue_velocity_get_type();
+ GeoclueVelocity velocity;
return 0;
}