diff options
author | Tony Wasserka <NeoBrainX@gmail.com> | 2014-11-13 18:17:39 +0100 |
---|---|---|
committer | Tony Wasserka <NeoBrainX@gmail.com> | 2014-11-18 13:09:01 +0100 |
commit | 182476c96a6c75e90a90cbb52048bf754fdd786d (patch) | |
tree | c6ce8fc723e9c702a3bc3bf3c1a6788b6faee486 /src/common/emu_window.h | |
parent | EmuWindow: Add documentation. (diff) | |
download | yuzu-182476c96a6c75e90a90cbb52048bf754fdd786d.tar yuzu-182476c96a6c75e90a90cbb52048bf754fdd786d.tar.gz yuzu-182476c96a6c75e90a90cbb52048bf754fdd786d.tar.bz2 yuzu-182476c96a6c75e90a90cbb52048bf754fdd786d.tar.lz yuzu-182476c96a6c75e90a90cbb52048bf754fdd786d.tar.xz yuzu-182476c96a6c75e90a90cbb52048bf754fdd786d.tar.zst yuzu-182476c96a6c75e90a90cbb52048bf754fdd786d.zip |
Diffstat (limited to 'src/common/emu_window.h')
-rw-r--r-- | src/common/emu_window.h | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/src/common/emu_window.h b/src/common/emu_window.h index 1465743f2..3817a7734 100644 --- a/src/common/emu_window.h +++ b/src/common/emu_window.h @@ -89,20 +89,8 @@ public: return std::make_pair(client_area_width, client_area_height); } - // TODO: Remove - std::string GetWindowTitle() const { - return window_title; - } - - // TODO: Remove - void SetWindowTitle(const std::string& val) { - window_title = val; - } - protected: - // TODO: Remove window title initialization - EmuWindow() : - window_title(Common::StringFromFormat("Citra | %s-%s", Common::g_scm_branch, Common::g_scm_desc)) + EmuWindow() { // TODO config.min_client_area_size = std::make_pair(300u, 500u); @@ -145,9 +133,6 @@ private: virtual void OnMinimalClientAreaChangeRequest(const std::pair<unsigned,unsigned>& minimal_size) { } - // TODO: Remove - std::string window_title; ///< Current window title, should be used by window impl. - std::pair<unsigned,unsigned> framebuffer_size; unsigned client_area_width; ///< Current client width, should be set by window impl. |