diff options
| author | David Faure <[email protected]> | 2007-03-27 19:38:32 +0000 |
|---|---|---|
| committer | David Faure <[email protected]> | 2007-03-27 19:38:32 +0000 |
| commit | 623c19e042cd19c147bc27f50b62c22b4986e6b6 (patch) | |
| tree | a571cdd343919bdb8a051561f3858d2419a8bcfe /src/bookmarkssidebarpage.cpp | |
| parent | 6fecb341c2b4b5b73785fac245d56c3c6cb3683a (diff) | |
Added setters in urlnavigator to remove dependency on dolphinsettings.
Removed old unused kfileiconview.h header, fixed some unrelated missing includes due to that one being removed.
svn path=/trunk/KDE/kdebase/apps/; revision=647244
Diffstat (limited to 'src/bookmarkssidebarpage.cpp')
| -rw-r--r-- | src/bookmarkssidebarpage.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bookmarkssidebarpage.cpp b/src/bookmarkssidebarpage.cpp index b68fd58e5..bf7711aaf 100644 --- a/src/bookmarkssidebarpage.cpp +++ b/src/bookmarkssidebarpage.cpp @@ -110,15 +110,15 @@ void BookmarksSidebarPage::slotContextMenuRequested(Q3ListBoxItem* item, KMenu* popup = new KMenu(); if (item == 0) { - QAction *action = popup->addAction(SmallIcon("document-new"), i18n("Add Bookmark...")); + QAction *action = popup->addAction(KIcon("document-new"), i18n("Add Bookmark...")); action->setData(addID); } else { - QAction *action = popup->addAction(SmallIcon("document-new"), i18n("Insert Bookmark...")); + QAction *action = popup->addAction(KIcon("document-new"), i18n("Insert Bookmark...")); action->setData(insertID); - action = popup->addAction(SmallIcon("edit"), i18n("Edit...")); + action = popup->addAction(KIcon("edit"), i18n("Edit...")); action->setData(editID); - action = popup->addAction(SmallIcon("edit-delete"), i18n("Delete")); + action = popup->addAction(KIcon("edit-delete"), i18n("Delete")); action->setData(deleteID); } |
