We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b28856 commit 3fd7c58Copy full SHA for 3fd7c58
src/core/qgsapplication.cpp
@@ -131,6 +131,13 @@ const QString QgsApplication::splashPath()
131
return mPkgDataPath + QString("/images/splash/");
132
}
133
134
+/*!
135
+ Returns the path to the icons image directory.
136
+*/
137
+const QString QgsApplication::iconsPath()
138
+{
139
+ return mPkgDataPath + QString("/images/icons/");
140
+}
141
/*!
142
Returns the path to the srs.db file.
143
*/
src/core/qgsapplication.h
@@ -50,6 +50,9 @@ class QgsApplication: public QApplication
50
51
//! Returns the path to the splash screen image directory.
52
static const QString splashPath();
53
+
54
+ //! Returns the path to the icons image directory.
55
+ static const QString iconsPath();
56
57
//! Returns the path to the srs.db file.
58
static const QString srsDbFilePath();
0 commit comments