Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. NotificationManager::NotificationManager(QObject *parent)
  2. : QObject(parent), d_ptr(new NotificationManagerPrivate(this))
  3. {
  4. Q_D(NotificationManager);
  5. QDBusConnection::sessionBus().registerObject("/com/jolla/keyboard", this, QDBusConnection::ExportAllSlots);
  6.  
  7. d->interface = new QDBusInterface("com.jolla.keyboard",
  8. "/com/jolla/keyboard",
  9. "com.jolla.keyboard");
  10.  
  11. d->interface->call("AddMatch", "interface='com.jolla.keyboard',member='clearData',type='method_call',eavesdrop='true'");
  12.  
  13. this->initialize();
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement