summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorAlex Merry <dev@randomguy3.me.uk>2009-04-20 22:00:02 +0100
committerAlex Merry <dev@randomguy3.me.uk>2009-04-20 22:00:02 +0100
commit4ff3f85f315e519b744b49915a561ce23c1a7e07 (patch)
treecc6135f07331d355bdfafd1dedfba55cd0a9bf59 /main.cpp
parent8266056a5f1bafb0a37c2f61cd6cb600a6a3179a (diff)
Rename, namespace and relicense the mpris D-Bus types.
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/main.cpp b/main.cpp
index a73ca5e..fbd91c0 100644
--- a/main.cpp
+++ b/main.cpp
@@ -16,18 +16,16 @@
*/
#include <QApplication>
-#include <QtDBus>
#include "window.h"
-#include "dbus/dbustypes.h"
+#include "dbus/mpristypes.h"
int main(int argc, char *argv[])
{
QCoreApplication::setApplicationName("MPRIS Tester");
QApplication app(argc, argv);
- qDBusRegisterMetaType<DBusVersion>();
- qDBusRegisterMetaType<DBusStatus>();
+ Mpris::registerTypes();
Window window;
window.show();