]> git.saurik.com Git - wxWidgets.git/commitdiff
remove unnecessary (and provoking a warning under IRIX) const qualifier on the return...
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 22 Jun 2004 21:40:17 +0000 (21:40 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 22 Jun 2004 21:40:17 +0000 (21:40 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27946 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/html/htmlcell.h

index bb1b83a5c35ddfdaf875cf766be892f16a45b189..4bc6bb4f4da50317e146090c36b7a719b41aebf7 100644 (file)
@@ -59,7 +59,7 @@ public:
     void SetToPrivPos(const wxPoint& pos) { m_toPrivPos = pos; }
     void ClearPrivPos() { m_toPrivPos = m_fromPrivPos = wxDefaultPosition; }
 
-    const bool IsEmpty() const 
+    bool IsEmpty() const 
         { return m_fromPos == wxDefaultPosition && 
                  m_toPos == wxDefaultPosition; }