diff options
Diffstat (limited to 'languages/cpp/main.cpp')
-rw-r--r-- | languages/cpp/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/languages/cpp/main.cpp b/languages/cpp/main.cpp index a1965f78..b3e6bacb 100644 --- a/languages/cpp/main.cpp +++ b/languages/cpp/main.cpp @@ -86,11 +86,11 @@ public: if ( !kdedir.isNull() ) addIncludePath( kdedir + "/include" ); - TQString qtdir = getenv( "TQTDIR" ); + TQString qtdir = getenv( "QTDIR" ); if ( !qtdir.isNull() ) addIncludePath( qtdir + "/include" ); - TQString qmakespec = getenv( "TQMAKESPEC" ); + TQString qmakespec = getenv( "QMAKESPEC" ); if ( qmakespec.isNull() ) qmakespec = "linux-g++"; // #### implement other mkspecs and find a better way to find the |