diff options
Diffstat (limited to 'src/projectmanager.cpp')
| -rw-r--r-- | src/projectmanager.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/projectmanager.cpp b/src/projectmanager.cpp index 3ced0d63..bf656ff4 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 TDevelop2 project.")); +  action->setWhatsThis(i18n("<b>Open project</b><p>Opens a KDevelop3 or KDevelop2 project."));    m_openRecentProjectAction =      new TDERecentFilesAction(i18n("Open &Recent Project"), 0, @@ -138,7 +138,7 @@ void ProjectManager::slotOpenProject()        return;    if (url.path().endsWith("tdevprj")) -      loadTDevelop2Project( url ); +      loadKDevelop2Project( url );    else        loadProject( url );  } @@ -611,7 +611,7 @@ ProjectSession* ProjectManager::projectSession() const    return m_pProjectSession;  } -bool ProjectManager::loadTDevelop2Project( const KURL & url ) +bool ProjectManager::loadKDevelop2Project( const KURL & url )  {      if( !url.isValid() || !url.isLocalFile() ){          KMessageBox::sorry(0, i18n("Invalid URL.")); | 
