diff options
Diffstat (limited to 'buildtools/custommakefiles/customprojectpart.cpp')
| -rw-r--r-- | buildtools/custommakefiles/customprojectpart.cpp | 28 | 
1 files changed, 14 insertions, 14 deletions
| diff --git a/buildtools/custommakefiles/customprojectpart.cpp b/buildtools/custommakefiles/customprojectpart.cpp index c9cc482d..5b41080e 100644 --- a/buildtools/custommakefiles/customprojectpart.cpp +++ b/buildtools/custommakefiles/customprojectpart.cpp @@ -31,7 +31,7 @@  #include <kdebug.h>  #include <kdialogbase.h>  #include <keditlistbox.h> -#include <tdevgenericfactory.h> +#include <kdevgenericfactory.h>  #include <kiconloader.h>  #include <tdelocale.h>  #include <tdemainwindow.h> @@ -42,11 +42,11 @@  #include <kprocess.h>  #include "domutil.h" -#include "tdevcore.h" -#include "tdevmainwindow.h" -#include "tdevmakefrontend.h" -#include "tdevappfrontend.h" -#include "tdevpartcontroller.h" +#include "kdevcore.h" +#include "kdevmainwindow.h" +#include "kdevmakefrontend.h" +#include "kdevappfrontend.h" +#include "kdevpartcontroller.h"  #include "runoptionswidget.h"  #include "makeoptionswidget.h"  #include "custombuildoptionswidget.h" @@ -59,18 +59,18 @@  #include "selectnewfilesdialog.h" -#include <tdevplugininfo.h> +#include <kdevplugininfo.h> -typedef TDevGenericFactory<CustomProjectPart> CustomProjectFactory; -static const TDevPluginInfo data( "tdevcustomproject" ); -K_EXPORT_COMPONENT_FACTORY( libtdevcustomproject, CustomProjectFactory( data ) ) +typedef KDevGenericFactory<CustomProjectPart> CustomProjectFactory; +static const KDevPluginInfo data( "kdevcustomproject" ); +K_EXPORT_COMPONENT_FACTORY( libkdevcustomproject, CustomProjectFactory( data ) )  CustomProjectPart::CustomProjectPart( TQObject *parent, const char *name, const TQStringList & ) -        : TDevBuildTool( &data, parent, name ? name : "CustomProjectPart" ) +        : KDevBuildTool( &data, parent, name ? name : "CustomProjectPart" )          , m_lastCompilationFailed( false ), m_recursive( false ), m_first_recursive( false )  {      setInstance( CustomProjectFactory::instance() ); -    setXMLFile( "tdevcustomproject.rc" ); +    setXMLFile( "kdevcustomproject.rc" );      m_executeAfterBuild = false; @@ -477,7 +477,7 @@ void CustomProjectPart::openProject( const TQString &dirName, const TQString &pr          el.setTagName( "default" );          envs.appendChild( el );      } -    TDevProject::openProject( dirName, projectName ); +    KDevProject::openProject( dirName, projectName );  } @@ -632,7 +632,7 @@ DomUtil::PairList CustomProjectPart::runEnvironmentVars() const    */  TQString CustomProjectPart::runDirectory() const  { -    TQString cwd = defaultRunDirectory( "tdevcustomproject" ); +    TQString cwd = defaultRunDirectory( "kdevcustomproject" );      if ( cwd.isEmpty() )          cwd = buildDirectory();      return cwd; | 
