summary refs log tree commit diff
path: root/src/MainWindow.h
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2022-01-09 00:28:03 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2022-01-09 01:02:25 +0100
commitf1a23355bdd7d2fe08c5efa73ee21ece14979a7f (patch)
tree4ec98d825fcb20c4948e689f119a4e47b979273c /src/MainWindow.h
parentWork around images with size 0 in info (diff)
downloadnheko-f1a23355bdd7d2fe08c5efa73ee21ece14979a7f.tar.xz
Port usersettings to qml
Diffstat (limited to 'src/MainWindow.h')
-rw-r--r--src/MainWindow.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/MainWindow.h b/src/MainWindow.h
index 82579937..458eb054 100644
--- a/src/MainWindow.h
+++ b/src/MainWindow.h
@@ -84,9 +84,6 @@ private slots:
     //! Show the register page in the main window.
     void showRegisterPage();
 
-    //! Show user settings page.
-    void showUserSettingsPage();
-
     //! Show the chat page and start communicating with the given access token.
     void showChatPage();
 
@@ -98,6 +95,7 @@ private slots:
 signals:
     void focusChanged(const bool focused);
     void reload();
+    void secretsChanged();
 
 private:
     void showDialog(QWidget *dialog);
@@ -120,7 +118,6 @@ private:
     QStackedWidget *pageStack_;
     //! The main chat area.
     ChatPage *chat_page_;
-    UserSettingsPage *userSettingsPage_;
     QSharedPointer<UserSettings> userSettings_;
     //! Tray icon that shows the unread message count.
     TrayIcon *trayIcon_;