File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ IF(WIN32)
15
15
#MESSAGE("Searching for QGIS in $ENV{PROGRAMFILES}/Quantum GIS")
16
16
IF (MINGW )
17
17
FIND_PATH (QGIS_PLUGIN_DIR
18
- NAMES libnortharrowplugin .dll
18
+ NAMES libdelimitedtextplugin .dll
19
19
PATHS
20
20
"$ENV{PROGRAMFILES} /Quantum GIS/plugins"
21
21
)
@@ -38,7 +38,7 @@ IF(WIN32)
38
38
39
39
IF (MSVC )
40
40
FIND_PATH (QGIS_PLUGIN_DIR
41
- NAMES northarrowplugin .dll
41
+ NAMES delimitedtextplugin .dll
42
42
PATHS
43
43
"$ENV{OSGEO4W_ROOT} /apps/qgis/plugins"
44
44
"$ENV{PROGRAMFILES} /Quantum GIS/plugins"
@@ -82,7 +82,7 @@ ELSE(WIN32)
82
82
SET (QGIS_MAC_PATH /Applications/QGIS.app/Contents )
83
83
#MESSAGE("Searching for QGIS in /usr/bin; /usr/local/bin")
84
84
FIND_PATH (QGIS_PLUGIN_DIR
85
- NAMES libnortharrowplugin .so
85
+ NAMES libdelimitedtextplugin .so
86
86
PATHS
87
87
/usr/lib64/qgis/plugins
88
88
/usr/lib/qgis
Original file line number Diff line number Diff line change @@ -340,10 +340,10 @@ def checkGrassIsInstalled(ignoreRegistrySettings=False):
340
340
return ("The specified GRASS folder does not contain a valid set of GRASS modules.\n "
341
341
+ "Please, go to the SEXTANTE settings dialog, and check that the GRASS\n "
342
342
+ "folder is correctly configured" )
343
-
343
+
344
344
settings = QSettings ()
345
345
if not ignoreRegistrySettings :
346
- GRASS_INSTALLED = "/SextanteQGIS/GrassInstalled"
346
+ GRASS_INSTALLED = "/SextanteQGIS/GrassInstalled"
347
347
if settings .contains (GRASS_INSTALLED ):
348
348
return
349
349
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ def checkSagaIsInstalled(ignoreRegistrySettings=False):
137
137
138
138
settings = QSettings ()
139
139
if not ignoreRegistrySettings :
140
- SAGA_INSTALLED = "/SextanteQGIS/SagaInstalled"
140
+ SAGA_INSTALLED = "/SextanteQGIS/SagaInstalled"
141
141
if settings .contains (SAGA_INSTALLED ):
142
142
return
143
143
You can’t perform that action at this time.
0 commit comments