Remove a bit of qt3 compability code

git-svn-id: http://svn.osgeo.org/qgis/trunk@6111 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
g_j_m 2006-11-17 20:27:02 +00:00
parent 004b83102b
commit 2e32be7789

View File

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