diff options
Diffstat (limited to 'src/client.h')
-rw-r--r-- | src/client.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/client.h b/src/client.h index 09b73bd9f..44a71b460 100644 --- a/src/client.h +++ b/src/client.h @@ -287,6 +287,9 @@ public: static std::string getOnlineUrl() A_WARN_UNUSED { return instance()->mOnlineListUrl; } + static std::string getSupportUrl() A_WARN_UNUSED + { return instance()->mCurrentServer.supportUrl; } + static void resize(const int width, const int height, const bool always = false) { instance()->resizeVideo(width, height, always); } @@ -340,6 +343,10 @@ public: static void updateScreenKeyboard(int height); + static Window *openErrorDialog(const std::string &header, + const std::string &message, + const bool modal); + private: void initRootDir(); |