diff options
author | Arno <arno@disconnect.de> | 2018-03-31 18:23:30 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-03-31 18:23:30 +0200 |
commit | 3ef1fdee3a8f698cea243c86f4747a4060eb1763 (patch) | |
tree | 516883fe5410cb9f7a94a2ce8cc88f16a4ec46b1 /smglobals.h | |
parent | 8691fe4f1cae523bc2fdd64d3e90326f92fcb9d6 (diff) | |
download | SheMov-3ef1fdee3a8f698cea243c86f4747a4060eb1763.tar.gz SheMov-3ef1fdee3a8f698cea243c86f4747a4060eb1763.tar.bz2 SheMov-3ef1fdee3a8f698cea243c86f4747a4060eb1763.zip |
Implement archive movies for FSWidget
Mimic the old behavior, but make the Wizard local to FSWidget. It's only
called from there, so no need to make it global.
Diffstat (limited to 'smglobals.h')
-rw-r--r-- | smglobals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smglobals.h b/smglobals.h index 7cc332f..0ac20ac 100644 --- a/smglobals.h +++ b/smglobals.h @@ -42,8 +42,8 @@ class SmGlobals : public QObject { QIcon iconFor(const QString &type); const QHash<QString, QString> & icons() const { return mIcons; } QHash<int, QString> filetypeMap() const { return mFiletypeMap; } - QHash<QString, QWidget*> registeredWidgets() { return mWidgets; } void registerWidget(const QString &name, QWidget *w); + QWidget *getRegisteredWidget(const QString &name); QStringList reencReasons() const { return mReencReasons; } void setReencReasons(const QStringList reasons); |