diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:10:05 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-01 15:10:05 -0600 |
commit | 74a2067d286867e313f736d6733407586b71195e (patch) | |
tree | 182ea565d6909db1541424e4ffb3168b4b139c21 /kate/filelistloader/katefll_plugin.cpp | |
parent | 081670a12774435ae60cf8eba9226b91d27852b3 (diff) | |
download | tdeaddons-74a2067d286867e313f736d6733407586b71195e.tar.gz tdeaddons-74a2067d286867e313f736d6733407586b71195e.zip |
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'kate/filelistloader/katefll_plugin.cpp')
-rw-r--r-- | kate/filelistloader/katefll_plugin.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kate/filelistloader/katefll_plugin.cpp b/kate/filelistloader/katefll_plugin.cpp index 6852485..f3f6f4d 100644 --- a/kate/filelistloader/katefll_plugin.cpp +++ b/kate/filelistloader/katefll_plugin.cpp @@ -39,7 +39,7 @@ class PluginView : public KXMLGUIClient public: Kate::MainWindow *win; - KRecentFilesAction *recentFiles; + TDERecentFilesAction *recentFiles; }; PluginKateFileListLoader::PluginKateFileListLoader (TQObject * parent, const char *name, const TQStringList) @@ -74,20 +74,20 @@ void PluginKateFileListLoader::addView(Kate::MainWindow *win) { PluginView *view = new PluginView (); - (void) new KAction( i18n("Open File List..."), 0, + (void) new TDEAction( i18n("Open File List..."), 0, this, TQT_SLOT( slotOpenList() ), view->actionCollection(), "file_kfllopen" ); - view->recentFiles = new KRecentFilesAction( i18n("Open Recent"), KShortcut::null(), + view->recentFiles = new TDERecentFilesAction( i18n("Open Recent"), TDEShortcut::null(), this, TQT_SLOT(slotOpenList(const KURL&)), view->actionCollection(), "file_kfllopenrecent"); view->recentFiles->loadEntries(m_config, "Recent Files"); - (void) new KAction( i18n("Save File List"), 0, + (void) new TDEAction( i18n("Save File List"), 0, this, TQT_SLOT( slotSaveList() ), view->actionCollection(), "file_kfllsave" ); - (void) new KAction( i18n("Save File List As..."), 0, + (void) new TDEAction( i18n("Save File List As..."), 0, this, TQT_SLOT( slotSaveListAs() ), view->actionCollection(), "file_kfllsaveas" ); |