aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorConfuSomu2023-08-15 20:24:49 -0400
committerConfuSomu2023-08-15 20:24:49 -0400
commit597d1ae9b3e0e0b8f7f4fc27b674345e5b812c29 (patch)
tree9b33f92dd0a58c744821e615bf71d39b082e1943 /src
parent5066f9908772d1838d73834eb5bcb6f8f7858fe1 (diff)
downloadActorViewer-597d1ae9b3e0e0b8f7f4fc27b674345e5b812c29.tar
ActorViewer-597d1ae9b3e0e0b8f7f4fc27b674345e5b812c29.tar.gz
ActorViewer-597d1ae9b3e0e0b8f7f4fc27b674345e5b812c29.zip
Remove the commented-out AppSettings struct
It was only used for reference and doesn't serve anything now.
Diffstat (limited to 'src')
-rw-r--r--src/settings_interface.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/settings_interface.h b/src/settings_interface.h
index fa9386c..e290125 100644
--- a/src/settings_interface.h
+++ b/src/settings_interface.h
@@ -4,18 +4,6 @@
#include <QVariant>
#include <QSettings>
-/* struct AppSettings {
- enum {LOCALTIME, UTC} ui_timezone = LOCALTIME;
- bool can_access_internet = true;
- bool can_download_emoji = true;
- bool can_download_attachments = true;
- struct {
- enum {MASTODON} type = MASTODON;
- QString address;
- QString token;
- } instance;
-}; */
-
namespace AppSettingsTypes {
enum Timezone {LOCALTIME = 0, UTC};
enum InstanceType {MASTODON = 0};