Revert "Minor tdevelop->kdevelop restorations in support of commit 722ce1ef."

This reverts commit 2c241008bc.
pull/1/head
Michele Calgaro 10 years ago
parent 41f7ca9b5d
commit b664098e9a

@ -12,7 +12,7 @@
This way the .tdevelop file can be shared in teams of developers.
\section KDevelop2compat KDevelop 2 compatibility
\section TDevelop2compat KDevelop 2 compatibility
(These are things that must be accomplished before we can say that KDevelop 3
>= tdevelop 2.x UI-wise and functionality-wise!)

@ -1127,7 +1127,7 @@ and <filename>hello.kdevses</filename>.</para>
<para>Of particular importance in each project is the
<filename>xxx.tdevelop</filename> (where <quote>xxx</quote> denotes the project
name) file. It is the main <emphasis>TDevelop Project File</emphasis> and
name) file. It is the main <emphasis>TDevelop 3 Project File</emphasis> and
needed if you later want load this project into the &IDE;.</para>
<warning>

@ -45,7 +45,7 @@
<title>Converting Old TDevelop Project Files</title>
<para>
&tdevelop; allows you to open old KDevelop 2.x project files and convert them to &tdevelop; files. To do so go to <guimenuitem>Open Project...</guimenuitem> and select <guilabel>KDevelop 2 project files</guilabel> in the <guilabel>Filter:</guilabel>. Then select project file you want to open. The project gets converted to &tdevelop; and saved as a <guilabel>&tdevelop; project file</guilabel>.
&tdevelop; allows you to open old TDevelop 2.x project files and convert them to &tdevelop; files. To do so go to <guimenuitem>Open Project...</guimenuitem> and select <guilabel>TDevelop 2 project files</guilabel> in the <guilabel>Filter:</guilabel>. Then select project file you want to open. The project gets converted to &tdevelop; and saved as a <guilabel>&tdevelop; project file</guilabel>.
</para>
</sect2> <!-- converting-projects -->

@ -1,14 +1,14 @@
<!DOCTYPE tdeveloptoc>
<tdeveloptoc>
<title>Qt Designer-3 and TDevelop-3</title>
<base href="http://women.kde.org/articles/tutorials/kdevelop3"/>
<base href="http://women.kde.org/articles/tutorials/tdevelop3"/>
<tocsect1 name="Index" url="index.html">
</tocsect1>
<tocsect1 name="Introduction" url="introduction.html">
</tocsect1>
<tocsect1 name="Requirements" url="requirements.html">
<tocsect2 name="How to get Qt Designer" url="requirements.html"/>
<tocsect2 name="How to get TDevelop" url="get-kevelop.html"/>
<tocsect2 name="How to get TDevelop 3" url="get-kevelop.html"/>
<tocsect2 name="Lexicon" url="lexicon.html"/>
</tocsect1>
<tocsect1 name="Creating the application" url="creating.html">

@ -252,7 +252,7 @@ void ClassViewWidget::insertFile( const TQString& fileName )
}
break;
case KDevelop2ViewMode:
case TDevelop2ViewMode:
{
}
break;
@ -293,7 +293,7 @@ void ClassViewWidget::removeFile( const TQString& fileName )
}
break;
case KDevelop2ViewMode:
case TDevelop2ViewMode:
{
}
break;

@ -51,7 +51,7 @@ public:
enum ViewMode
{
KDevelop3ViewMode = 0,
KDevelop2ViewMode,
TDevelop2ViewMode,
JavaLikeViewMode
};

@ -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."));

@ -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:

Loading…
Cancel
Save