summaryrefslogtreecommitdiff
path: root/include/vcl/bitmap.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/bitmap.hxx')
-rw-r--r--include/vcl/bitmap.hxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/vcl/bitmap.hxx b/include/vcl/bitmap.hxx
index 4c1a3b3dbddf..1bfc484fee5b 100644
--- a/include/vcl/bitmap.hxx
+++ b/include/vcl/bitmap.hxx
@@ -121,10 +121,8 @@ public:
Bitmap& operator=( const Bitmap& rBitmap );
Bitmap& operator=( Bitmap&& rBitmap ) noexcept;
- inline bool operator!() const;
bool operator==( const Bitmap& rBitmap ) const;
bool operator!=( const Bitmap& rBitmap ) const { return !operator==(rBitmap); }
- inline operator bool() const;
inline bool IsEmpty() const;
void SetEmpty();
@@ -551,16 +549,6 @@ private:
};
-inline Bitmap::operator bool() const
-{
- return mxSalBmp != nullptr;
-}
-
-inline bool Bitmap::operator!() const
-{
- return( mxSalBmp == nullptr );
-}
-
inline bool Bitmap::IsEmpty() const
{
return( mxSalBmp == nullptr );