diff options
Diffstat (limited to 'lib/kofficecore')
-rw-r--r-- | lib/kofficecore/KoDetailsPane.cpp | 2 | ||||
-rw-r--r-- | lib/kofficecore/KoMainWindow.cpp | 2 | ||||
-rw-r--r-- | lib/kofficecore/KoOpenPane.cpp | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/kofficecore/KoDetailsPane.cpp b/lib/kofficecore/KoDetailsPane.cpp index 5611e873..18e0f317 100644 --- a/lib/kofficecore/KoDetailsPane.cpp +++ b/lib/kofficecore/KoDetailsPane.cpp @@ -276,7 +276,7 @@ KoRecentDocumentsPane::KoRecentDocumentsPane(TQWidget* parent, TDEInstance* inst m_previewLabel->installEventFilter(this); m_documentList->installEventFilter(this); setFocusProxy(m_documentList); - KGuiItem openGItem(i18n("Open This Document"), "fileopen"); + KGuiItem openGItem(i18n("Open This Document"), "document-open"); m_openButton->setGuiItem(openGItem); m_alwaysUseCheckBox->hide(); m_documentList->header()->hide(); diff --git a/lib/kofficecore/KoMainWindow.cpp b/lib/kofficecore/KoMainWindow.cpp index a2189c88..2dd15e95 100644 --- a/lib/kofficecore/KoMainWindow.cpp +++ b/lib/kofficecore/KoMainWindow.cpp @@ -259,7 +259,7 @@ KoMainWindow::KoMainWindow( TDEInstance *instance, const char* name ) new KKbdAccessExtensions(this, "mw-panelSizer"); // set up the action "list" for "Close all Views" (hacky :) (Werner) d->m_veryHackyActionList.append( - new TDEAction(i18n("&Close All Views"), "fileclose", + new TDEAction(i18n("&Close All Views"), "window-close", "ctrl+shift+w", TQT_TQOBJECT(this), TQT_SLOT(slotCloseAllViews()), actionCollection(), "view_closeallviews") ); diff --git a/lib/kofficecore/KoOpenPane.cpp b/lib/kofficecore/KoOpenPane.cpp index ed3086ab..130226be 100644 --- a/lib/kofficecore/KoOpenPane.cpp +++ b/lib/kofficecore/KoOpenPane.cpp @@ -114,7 +114,7 @@ KoOpenPane::KoOpenPane(TQWidget *parent, TDEInstance* instance, const TQString& connect(m_sectionList, TQT_SIGNAL(returnPressed(TQListViewItem*)), this, TQT_SLOT(itemClicked(TQListViewItem*))); - KGuiItem openExistingGItem(i18n("Open Existing Document..."), "fileopen"); + KGuiItem openExistingGItem(i18n("Open Existing Document..."), "document-open"); m_openExistingButton->setGuiItem(openExistingGItem); connect(m_openExistingButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(showOpenFileDialog())); @@ -172,7 +172,7 @@ void KoOpenPane::initRecentDocs() { KoRecentDocumentsPane* recentDocPane = new KoRecentDocumentsPane(this, d->m_instance); connect(recentDocPane, TQT_SIGNAL(openFile(const TQString&)), this, TQT_SIGNAL(openExistingFile(const TQString&))); - TQListViewItem* item = addPane(i18n("Recent Documents"), "fileopen", recentDocPane, 0); + TQListViewItem* item = addPane(i18n("Recent Documents"), "document-open", recentDocPane, 0); connect(recentDocPane, TQT_SIGNAL(splitterResized(KoDetailsPaneBase*, const TQValueList<int>&)), this, TQT_SIGNAL(splitterResized(KoDetailsPaneBase*, const TQValueList<int>&))); connect(this, TQT_SIGNAL(splitterResized(KoDetailsPaneBase*, const TQValueList<int>&)), |