diff options
author | George Hazan <ghazan@miranda.im> | 2017-03-21 18:03:28 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-03-21 18:03:42 +0300 |
commit | d15ac078344461faee80f676b49d2194387b9862 (patch) | |
tree | 166ce339d6222d1a3bcaa59838498644c922d4a7 /include | |
parent | 61d7b63b8aafd5315de4933ffd56db6b4c94042a (diff) |
less useless crap exported from mir_core
Diffstat (limited to 'include')
-rw-r--r-- | include/m_gui.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/m_gui.h b/include/m_gui.h index 00a89a34c3..31e33c0994 100644 --- a/include/m_gui.h +++ b/include/m_gui.h @@ -484,6 +484,9 @@ class MIR_CORE_EXPORT CCtrlBase {
friend class CDlgBase;
+ __forceinline CCtrlBase(const CCtrlBase&) {}
+ __forceinline CCtrlBase& operator=(const CCtrlBase&) { return *this; }
+
__forceinline CCtrlBase(HWND hwnd) : m_hwnd(hwnd) {}
public:
|