diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-10-08 15:18:16 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-10-08 15:48:12 -0400 |
commit | 3786609a153b7fa38393eb646557d241af2d3060 (patch) | |
tree | d2d33086cf318229a7893dc0958630834fc1ec16 /include/svl/sharedstring.hxx | |
parent | a7ff6e0a3fc5fccad33f06ae9d4ec7019f9ae156 (diff) |
No more getIdentifier*() calls because they are not efficient.
They shall never be used.
Change-Id: I019c88b1511a67175d782777cd41e0ec0434f497
Diffstat (limited to 'include/svl/sharedstring.hxx')
-rw-r--r-- | include/svl/sharedstring.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/svl/sharedstring.hxx b/include/svl/sharedstring.hxx index b2879a8aa463..1e16c5373de2 100644 --- a/include/svl/sharedstring.hxx +++ b/include/svl/sharedstring.hxx @@ -29,6 +29,7 @@ public: SharedString& operator= ( const SharedString& r ); bool operator== ( const SharedString& r ) const; + bool operator!= ( const SharedString& r ) const; OUString getString() const; @@ -37,6 +38,8 @@ public: rtl_uString* getDataIgnoreCase(); const rtl_uString* getDataIgnoreCase() const; + + bool isValid() const; }; } |