From 905d4db48a0b98f540c8abc3e12fb80be4826029 Mon Sep 17 00:00:00 2001 From: Zolnai Tamás Date: Sat, 7 Feb 2015 11:26:23 +0100 Subject: tdf#88836: UI: in-form navigation bar icons gone Regression from: 6419c745e5e9802da264250d5e131fb9a3b6e4de Revert it and use IsEmpty() instead of operator!(). Change-Id: Icc4f5dbba848a1d4ef807e598f0aa3b940459c82 --- sd/qa/unit/data/xml/fdo64586_0.xml | 4 ++-- sd/qa/unit/data/xml/n758621_0.xml | 4 ++-- sd/qa/unit/data/xml/n758621_1.xml | 4 ++-- sd/qa/unit/data/xml/n819614_0.xml | 2 +- svtools/qa/unit/GraphicObjectTest.cxx | 11 +++++++++++ vcl/source/gdi/impgraph.cxx | 4 ++-- 6 files changed, 20 insertions(+), 9 deletions(-) diff --git a/sd/qa/unit/data/xml/fdo64586_0.xml b/sd/qa/unit/data/xml/fdo64586_0.xml index 7bbf719b1dc8..a2487832299c 100644 --- a/sd/qa/unit/data/xml/fdo64586_0.xml +++ b/sd/qa/unit/data/xml/fdo64586_0.xml @@ -4,7 +4,7 @@ - + @@ -18,7 +18,7 @@ - + diff --git a/sd/qa/unit/data/xml/n758621_0.xml b/sd/qa/unit/data/xml/n758621_0.xml index 288bf98fb239..754be1d41ed1 100644 --- a/sd/qa/unit/data/xml/n758621_0.xml +++ b/sd/qa/unit/data/xml/n758621_0.xml @@ -4,7 +4,7 @@ - + @@ -18,7 +18,7 @@ - + diff --git a/sd/qa/unit/data/xml/n758621_1.xml b/sd/qa/unit/data/xml/n758621_1.xml index a12421146bb9..0f71931585bb 100644 --- a/sd/qa/unit/data/xml/n758621_1.xml +++ b/sd/qa/unit/data/xml/n758621_1.xml @@ -4,7 +4,7 @@ - + @@ -18,7 +18,7 @@ - + diff --git a/sd/qa/unit/data/xml/n819614_0.xml b/sd/qa/unit/data/xml/n819614_0.xml index b7005beb9896..aff9c324344c 100644 --- a/sd/qa/unit/data/xml/n819614_0.xml +++ b/sd/qa/unit/data/xml/n819614_0.xml @@ -4,7 +4,7 @@ - + diff --git a/svtools/qa/unit/GraphicObjectTest.cxx b/svtools/qa/unit/GraphicObjectTest.cxx index e2ef58378de4..d4ecf29b6653 100644 --- a/svtools/qa/unit/GraphicObjectTest.cxx +++ b/svtools/qa/unit/GraphicObjectTest.cxx @@ -40,6 +40,7 @@ class GraphicObjectTest: public test::BootstrapFixture, public unotest::MacrosTe public: void testSwap(); void testSizeBasedAutoSwap(); + void testTdf88836(); virtual void setUp() SAL_OVERRIDE @@ -56,6 +57,7 @@ private: CPPUNIT_TEST_SUITE(GraphicObjectTest); CPPUNIT_TEST(testSwap); CPPUNIT_TEST(testSizeBasedAutoSwap); + CPPUNIT_TEST(testTdf88836); CPPUNIT_TEST_SUITE_END(); }; @@ -228,6 +230,15 @@ void GraphicObjectTest::testSizeBasedAutoSwap() xComponent->dispose(); } +void GraphicObjectTest::testTdf88836() +{ + // Construction with empty bitmap -> type should be GRAPHIC_NONE + Graphic aGraphic = Bitmap(); + CPPUNIT_ASSERT_EQUAL(GRAPHIC_NONE, aGraphic.GetType()); + aGraphic = Graphic(BitmapEx()); + CPPUNIT_ASSERT_EQUAL(GRAPHIC_NONE, aGraphic.GetType()); +} + CPPUNIT_TEST_SUITE_REGISTRATION(GraphicObjectTest); } diff --git a/vcl/source/gdi/impgraph.cxx b/vcl/source/gdi/impgraph.cxx index d0b74f4e7f74..2a66b164ce36 100644 --- a/vcl/source/gdi/impgraph.cxx +++ b/vcl/source/gdi/impgraph.cxx @@ -138,7 +138,7 @@ ImpGraphic::ImpGraphic( const Bitmap& rBitmap ) : mpContext ( NULL ), mpSwapFile ( NULL ), mpGfxLink ( NULL ), - meType ( GRAPHIC_BITMAP ), + meType ( !rBitmap.IsEmpty() ? GRAPHIC_BITMAP : GRAPHIC_NONE ), mnSizeBytes ( 0UL ), mnRefCount ( 1UL ), mbSwapOut ( false ), @@ -152,7 +152,7 @@ ImpGraphic::ImpGraphic( const BitmapEx& rBitmapEx ) : mpContext ( NULL ), mpSwapFile ( NULL ), mpGfxLink ( NULL ), - meType ( GRAPHIC_BITMAP ), + meType ( !rBitmapEx.IsEmpty() ? GRAPHIC_BITMAP : GRAPHIC_NONE ), mnSizeBytes ( 0UL ), mnRefCount ( 1UL ), mbSwapOut ( false ), -- cgit