diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-05-25 15:36:59 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2014-05-25 15:36:59 +0900 |
commit | b664098e9a21f427e27d50b6e3eb2c9dea83be99 (patch) | |
tree | 1c282f95e4a3748df586972d6898950d931b1a15 /src | |
parent | 41f7ca9b5d2cf09d3a1bfcb32f086408ce1f4c9e (diff) | |
download | tdevelop-b664098e9a21f427e27d50b6e3eb2c9dea83be99.tar.gz tdevelop-b664098e9a21f427e27d50b6e3eb2c9dea83be99.zip |
Revert "Minor tdevelop->kdevelop restorations in support of commit 722ce1ef."
This reverts commit 2c241008bc2a541aba15e83447f45970db3f59df.
Diffstat (limited to 'src')
-rw-r--r-- | src/projectmanager.cpp | 6 | ||||
-rw-r--r-- | src/projectmanager.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/projectmanager.cpp b/src/projectmanager.cpp index bf656ff4..3ced0d63 100644 --- a/src/projectmanager.cpp +++ b/src/projectmanager.cpp @@ -97,7 +97,7 @@ void ProjectManager::createActions( TDEActionCollection* ac ) this, TQT_SLOT(slotOpenProject()), ac, "project_open"); action->setToolTip( i18n("Open project")); - action->setWhatsThis(i18n("<b>Open project</b><p>Opens a KDevelop3 or KDevelop2 project.")); + action->setWhatsThis(i18n("<b>Open project</b><p>Opens a KDevelop3 or TDevelop2 project.")); m_openRecentProjectAction = new TDERecentFilesAction(i18n("Open &Recent Project"), 0, @@ -138,7 +138,7 @@ void ProjectManager::slotOpenProject() return; if (url.path().endsWith("tdevprj")) - loadKDevelop2Project( url ); + loadTDevelop2Project( url ); else loadProject( url ); } @@ -611,7 +611,7 @@ ProjectSession* ProjectManager::projectSession() const return m_pProjectSession; } -bool ProjectManager::loadKDevelop2Project( const KURL & url ) +bool ProjectManager::loadTDevelop2Project( const KURL & url ) { if( !url.isValid() || !url.isLocalFile() ){ KMessageBox::sorry(0, i18n("Invalid URL.")); diff --git a/src/projectmanager.h b/src/projectmanager.h index d82b7cf4..3c1b3599 100644 --- a/src/projectmanager.h +++ b/src/projectmanager.h @@ -65,7 +65,7 @@ public: public slots: bool loadProject( const KURL& url); - bool loadKDevelop2Project( const KURL& url); + bool loadTDevelop2Project( const KURL& url); bool closeProject( bool exiting = false ); private slots: |