Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
theme path fix
git-svn-id: http://svn.osgeo.org/qgis/trunk@4890 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
rblazek committed Feb 21, 2006
1 parent eefbd88 commit 1cdd884
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsoptions.cpp
Expand Up @@ -79,7 +79,7 @@ QgsOptions::QgsOptions(QWidget *parent, Qt::WFlags fl) :
QString myEllipsoidId = settings.readEntry("/qgis/measure/ellipsoid", "WGS84");
cmbEllipsoid->setCurrentText(getEllipsoidName(myEllipsoidId));
// add the themes to the combo box on the option dialog
QDir myThemeDir(QgsApplication::themePath());
QDir myThemeDir( QgsApplication::pkgDataPath()+"/themes/" );
myThemeDir.setFilter(QDir::Dirs);
QStringList myDirList = myThemeDir.entryList("*");
for(int i=0; i < myDirList.count(); i++)
Expand Down

0 comments on commit 1cdd884

Please sign in to comment.