summaryrefslogtreecommitdiffstats
path: root/languages/cpp/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/main.cpp')
-rw-r--r--languages/cpp/main.cpp18
1 files changed, 1 insertions, 17 deletions
diff --git a/languages/cpp/main.cpp b/languages/cpp/main.cpp
index 6352e211..2b4cb5d1 100644
--- a/languages/cpp/main.cpp
+++ b/languages/cpp/main.cpp
@@ -15,7 +15,7 @@
#include <catalog.h>
#include <kdebug.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <stdlib.h>
#include <unistd.h>
@@ -132,20 +132,6 @@ public:
}
}
- else if ( qmakespec == "win32-borland" )
- {
- TQString incl = getenv( "INCLUDE" );
- TQStringList includePaths = TQStringList::split( ';', incl );
- TQStringList::Iterator it = includePaths.begin();
- while ( it != includePaths.end() )
- {
- addIncludePath( ( *it ).stripWhiteSpace() );
- ++it;
- }
- // ### I am sure there are more standard include paths on
- // ### windows. I will fix that soon
- // ### Also do the compiler specific defines on windows
- }
}
private:
@@ -279,5 +265,3 @@ int main( int argc, char* argv[] )
return 0;
}
-
-//kate: indent-mode csands; tab-width 4; space-indent off;