diff options
author | fcolin | 2007-02-01 13:08:37 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:08:37 +0000 |
commit | 2c1660054c942745df387d0104f7de37908135b3 (patch) | |
tree | 7c76c46a96cc816b72d52959ba129c57ad55dc9d | |
parent | 2347fab458623881cd3a74249dc45233c58cf63a (diff) | |
download | ivy-cplusplus-2c1660054c942745df387d0104f7de37908135b3.zip ivy-cplusplus-2c1660054c942745df387d0104f7de37908135b3.tar.gz ivy-cplusplus-2c1660054c942745df387d0104f7de37908135b3.tar.bz2 ivy-cplusplus-2c1660054c942745df387d0104f7de37908135b3.tar.xz |
Utilisateur : Fcolin Date : 18/11/05 Heure : 11:46 Archivé dans $/Bus/IvyProbe Commentaire: (vss 3)
-rw-r--r-- | Bus/IvyProbe/ETSLayout.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bus/IvyProbe/ETSLayout.h b/Bus/IvyProbe/ETSLayout.h index b532c56..3bdc0da 100644 --- a/Bus/IvyProbe/ETSLayout.h +++ b/Bus/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); }
};
|