Skip to content

Commit

Permalink
Disallow calling direct settings values from qml
Browse files Browse the repository at this point in the history
All now implemented as properties
  • Loading branch information
pvuorela committed Jun 27, 2016
1 parent bc973f6 commit 7457b8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util.h
Expand Up @@ -83,8 +83,8 @@ class Util : public QObject

Q_INVOKABLE QString versionString();
Q_INVOKABLE QString configPath();
Q_INVOKABLE QVariant settingsValue(QString key);
Q_INVOKABLE void setSettingsValue(QString key, QVariant value);
QVariant settingsValue(QString key);
void setSettingsValue(QString key, QVariant value);

int uiFontSize();

Expand Down

0 comments on commit 7457b8d

Please sign in to comment.