diff options
| author | Laurent Montel <[email protected]> | 2009-02-28 12:50:34 +0000 |
|---|---|---|
| committer | Laurent Montel <[email protected]> | 2009-02-28 12:50:34 +0000 |
| commit | 00e6fb5c7b82d26cced5dc01fb36c0cdce9f7a04 (patch) | |
| tree | 17cd20a6609d2190ad6f6a7aea9c59cefdfcab28 /src/dolphinmainwindow.cpp | |
| parent | 67ecc8574d6b12aa7df86cf9fa2fd4390b29f5df (diff) | |
Fix warning about shortcut
svn path=/trunk/KDE/kdebase/apps/; revision=933227
Diffstat (limited to 'src/dolphinmainwindow.cpp')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 5ebb08f3e..627c6a43a 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -1010,7 +1010,7 @@ void DolphinMainWindow::setupActions() newTab->setShortcut(KShortcut(Qt::CTRL | Qt::Key_T, Qt::CTRL | Qt::SHIFT | Qt::Key_N)); connect(newTab, SIGNAL(triggered()), this, SLOT(openNewTab())); - QAction* closeTab = actionCollection()->addAction("close_tab"); + KAction* closeTab = actionCollection()->addAction("close_tab"); closeTab->setIcon(KIcon("tab-close")); closeTab->setText(i18nc("@action:inmenu File", "Close Tab")); closeTab->setShortcut(Qt::CTRL | Qt::Key_W); |
