summaryrefslogtreecommitdiffstats
path: root/kate/filelistloader
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:10:05 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-01 15:10:05 -0600
commit74a2067d286867e313f736d6733407586b71195e (patch)
tree182ea565d6909db1541424e4ffb3168b4b139c21 /kate/filelistloader
parent081670a12774435ae60cf8eba9226b91d27852b3 (diff)
downloadtdeaddons-74a2067d286867e313f736d6733407586b71195e.tar.gz
tdeaddons-74a2067d286867e313f736d6733407586b71195e.zip
Rename a number of classes to enhance compatibility with KDE4
Diffstat (limited to 'kate/filelistloader')
-rw-r--r--kate/filelistloader/katefll_plugin.cpp10
-rw-r--r--kate/filelistloader/katefll_plugin.h2
2 files changed, 6 insertions, 6 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" );
diff --git a/kate/filelistloader/katefll_plugin.h b/kate/filelistloader/katefll_plugin.h
index dc5a85b..ed7c1a8 100644
--- a/kate/filelistloader/katefll_plugin.h
+++ b/kate/filelistloader/katefll_plugin.h
@@ -58,7 +58,7 @@ class PluginKateFileListLoader : public Kate::Plugin, Kate::PluginViewInterface
private:
TQPtrList<class PluginView> m_views;
- KRecentFilesAction *m_recentFiles;
+ TDERecentFilesAction *m_recentFiles;
TDEConfig* m_config;
KURL m_oldInitURL;
KURL m_saveURL;