diff options
author | Kevin Ottens <ervin@kde.org> | 2013-05-04 21:35:18 +0200 |
---|---|---|
committer | Kevin Ottens <ervin@kde.org> | 2013-05-04 21:35:18 +0200 |
commit | 3d17b221cd127c4ae7de8949079c225994f20224 (patch) | |
tree | 6abb001bd3ae209e10dc0c8cced4a9eba82ee2bd /src | |
parent | Fix UNICODE sysmbols shown in the urlbar (diff) | |
download | rekonq-3d17b221cd127c4ae7de8949079c225994f20224.tar.xz |
Use a valid object path, otherwise you'll hit an assert
Diffstat (limited to 'src')
-rw-r--r-- | src/tabwindow/rekonqwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabwindow/rekonqwindow.cpp b/src/tabwindow/rekonqwindow.cpp index 773ded3f..4a4db7fc 100644 --- a/src/tabwindow/rekonqwindow.cpp +++ b/src/tabwindow/rekonqwindow.cpp @@ -106,7 +106,7 @@ void RekonqWindow::registerWindow() { // This is needed to properly support appmenu-qt feature RekonqFactory::createWidget(QL1S("menuBar"), this); - QDBusConnection::sessionBus().registerObject(QL1S("rekonq"), this); + QDBusConnection::sessionBus().registerObject(QL1S("/rekonq"), this); } |