Remove unused funtion

This commit is contained in:
Nicolas Werner 2022-01-30 20:24:57 +01:00
parent b706e272e5
commit 3c208cd717
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9
2 changed files with 0 additions and 10 deletions

View file

@ -9,7 +9,6 @@
#include <QDesktopServices>
#include <QStyle>
#include <QUrl>
#include <QWindow>
#include "Cache_p.h"
#include "ChatPage.h"
@ -135,9 +134,3 @@ Nheko::openCreateRoomDialog() const
MainWindow::instance()->openCreateRoomDialog(
[](const mtx::requests::CreateRoom &req) { ChatPage::instance()->createRoom(req); });
}
void
Nheko::reparent(QWindow *win) const
{
win->setTransientParent(MainWindow::instance());
}

View file

@ -12,8 +12,6 @@
#include "Theme.h"
#include "UserProfile.h"
class QWindow;
class Nheko : public QObject
{
Q_OBJECT
@ -55,7 +53,6 @@ public:
Q_INVOKABLE void showUserSettingsPage() const;
Q_INVOKABLE void logout() const;
Q_INVOKABLE void openCreateRoomDialog() const;
Q_INVOKABLE void reparent(QWindow *win) const;
public slots:
void updateUserProfile();