diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-07 17:11:10 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-07 17:11:10 +0000 |
commit | 4322e60a76440683afc694c1df0f2ccc8de726c3 (patch) | |
tree | 615f1bee3471f7f3f4f78305dfdecf2f043ff1be /include | |
parent | aa6b13e2545e7b8dbab49bc14909443643e375e9 (diff) |
missing method CDlgBase::SetCaption() for setting window's title
git-svn-id: http://svn.miranda-ng.org/main/trunk@13476 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_gui.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/m_gui.h b/include/m_gui.h index 3e3d783fb1..9bacf454af 100644 --- a/include/m_gui.h +++ b/include/m_gui.h @@ -267,6 +267,8 @@ public: void Show(int nCmdShow = SW_SHOW);
int DoModal();
+ void SetCaption(const TCHAR *ptszCaption);
+
__forceinline HINSTANCE GetInst() const { return m_hInst; }
__forceinline HWND GetHwnd() const { return m_hwnd; }
__forceinline bool IsInitialized() const { return m_initialized; }
|