]> git.saurik.com Git - wxWidgets.git/commitdiff
bool wxString::operator!() const added
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 28 Jan 1999 13:44:26 +0000 (13:44 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 28 Jan 1999 13:44:26 +0000 (13:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1505 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/string.h

index f3c3c00111688359782645dd7853d200b73e9866..c23b431316173d0eb23dd4e1ceed7da8505f8bf5 100644 (file)
@@ -266,6 +266,8 @@ public:
   size_t Len() const { return GetStringData()->nDataLength; }
     // string contains any characters?
   bool IsEmpty() const { return Len() == 0; }
+    // empty string is "FALSE", so !str will return TRUE
+  bool operator!() const { return IsEmpty(); }
     // empty string contents
   void Empty()
   {