diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-07-16 15:44:05 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-07-16 15:44:05 +0900 |
commit | a30a266067d9d952edc91305bef757557c03717e (patch) | |
tree | 7bcabd84594f751001c66b16f3c42a8d459b7773 /src/SettingsPaths.h | |
parent | d017bd37253ae35b29d82e3277b9adcbb4517dd0 (diff) | |
download | universal-indent-gui-tqt-a30a266067d9d952edc91305bef757557c03717e.tar.gz universal-indent-gui-tqt-a30a266067d9d952edc91305bef757557c03717e.zip |
Raw Qt->TQt conversion using tde/scripts/conversions/qt3-tqt3/convert_existing_qt3_app_to_tqt3.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/SettingsPaths.h')
-rwxr-xr-x | src/SettingsPaths.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/SettingsPaths.h b/src/SettingsPaths.h index 3442216..37c8bd9 100755 --- a/src/SettingsPaths.h +++ b/src/SettingsPaths.h @@ -20,18 +20,18 @@ #ifndef SETTINGSPATHS_H #define SETTINGSPATHS_H -class QString; +class TQString; class SettingsPaths { public: static void init(); - static const QString getApplicationBinaryPath(); - static const QString getSettingsPath(); - static const QString getGlobalFilesPath(); - static const QString getIndenterPath(); - static const QString getTempPath(); + static const TQString getApplicationBinaryPath(); + static const TQString getSettingsPath(); + static const TQString getGlobalFilesPath(); + static const TQString getIndenterPath(); + static const TQString getTempPath(); static bool getPortableMode(); static void cleanAndRemoveTempDir(); @@ -39,11 +39,11 @@ private: SettingsPaths(); static bool _alreadyInitialized; - static QString _applicationBinaryPath; - static QString _settingsPath; - static QString _globalFilesPath; - static QString _indenterPath; - static QString _tempPath; + static TQString _applicationBinaryPath; + static TQString _settingsPath; + static TQString _globalFilesPath; + static TQString _indenterPath; + static TQString _tempPath; static bool _portableMode; }; |