diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-04-29 12:41:37 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-04-29 12:41:37 +0100 |
commit | f307a2c56cdc1babab43f24f8094df34dd0f99c6 (patch) | |
tree | 7a7239b837ae9b585b6d59505b9d2595bd135028 | |
parent | 1b325fbc87284889ec9455c00d920d2c2d10eb6b (diff) |
bogus Werror=maybe-uninitialized
Change-Id: I01eeeeff399961e59194c592139386355515d44c
-rw-r--r-- | sd/source/ui/app/sdxfer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/app/sdxfer.cxx b/sd/source/ui/app/sdxfer.cxx index 6bb1dacdbd58..422b18ac2e57 100644 --- a/sd/source/ui/app/sdxfer.cxx +++ b/sd/source/ui/app/sdxfer.cxx @@ -466,7 +466,7 @@ bool SdTransferable::GetData( const DataFlavor& rFlavor, const OUString& rDestDo } else if( mpOLEDataHelper && mpOLEDataHelper->HasFormat( rFlavor ) ) { - SdrSwapGraphicsMode nOldSwapMode; + SdrSwapGraphicsMode nOldSwapMode(SdrSwapGraphicsMode::DEFAULT); if( mpSdDrawDocumentIntern ) { |