diff options
Diffstat (limited to 'IvyProbe/ETSLayout.h')
-rw-r--r-- | IvyProbe/ETSLayout.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IvyProbe/ETSLayout.h b/IvyProbe/ETSLayout.h index b532c56..3bdc0da 100644 --- a/IvyProbe/ETSLayout.h +++ b/IvyProbe/ETSLayout.h @@ -269,7 +269,7 @@ public: PaneBase* GetPaneBase() { return operator->(); }
bool IsValid() { return (m_pPaneHolder != 0); }
- operator !() { return (m_pPaneHolder == 0); }
+ bool operator !() { return (m_pPaneHolder == 0); }
};
|