Skip to content

Commit

Permalink
Remove a bit of qt3 compability code
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@6111 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Nov 17, 2006
1 parent 95938b3 commit b81c9ff
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions src/gui/main.cpp
Expand Up @@ -388,22 +388,12 @@ int main(int argc, char *argv[])
#endif

// Check to see if qgis was started from the source directory.
// This is done by looking for Makefile in the directory where qgis was
// started from. If running from the src directory, exit gracefully

// Get the application path. This method is required to support qt 3.1.2
// which does not support the applicationFilePath and applicationDirPath
// functions. We assume that OS X and Win32 systems will be using at least
// Qt 3.2 and therefore support the required functions.
#if defined(Q_OS_MACX) || defined(WIN32)
// This is done by looking for a particular file in the directory
// where qgis was started from. If running from the src directory,
// exit gracefully
QString appPath = qApp->applicationFilePath();
QString appDir = qApp->applicationDirPath();
QString testFile = "libqgis.la";
#else
QString appPath = argv[0];
QString appDir = appPath.left(appPath.findRev("/"));
QString testFile = "lt-qgis";
#endif
QString testFile = "libqgis_gui.la";

#ifdef Q_WS_WIN
//for windows lets use plastique syle!
Expand Down

0 comments on commit b81c9ff

Please sign in to comment.