diff options
| author | bunnei <ericbunnie@gmail.com> | 2014-04-10 20:02:30 -0400 | 
|---|---|---|
| committer | bunnei <ericbunnie@gmail.com> | 2014-04-10 20:04:38 -0400 | 
| commit | 7b3cde1f3ad827a32732f05959d1971ec0fc8cf2 (patch) | |
| tree | 46a8165b2a44121147e717afeab5d474cdff3f68 | |
| parent | 9527fc74add2584de861a3a40fb313304c0108a7 (diff) | |
added missing const to GetWindowTitle
| -rw-r--r-- | src/common/emu_window.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/emu_window.h b/src/common/emu_window.h index 731784756..e70b99ec1 100644 --- a/src/common/emu_window.h +++ b/src/common/emu_window.h @@ -55,7 +55,7 @@ public:          m_client_area_height = val;      } -    std::string GetWindowTitle() {  +    std::string GetWindowTitle() const {           return m_window_title;      }  | 
