diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2014-12-11 23:32:12 +0100 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-12-12 08:08:11 +0000 |
commit | 04b183a9bc792a53a9f081353a79486faa4f3872 (patch) | |
tree | 62a467485cc0f03f1d32998b362707f15b07bee0 /dtrans | |
parent | f5c5bab09f2e3a7e13a6b397faf4bdfcb898f295 (diff) |
fdo#39440 reduce scope of local variables
This addresses some cppcheck warnings.
Change-Id: Ifbc5a7a562e714f48dcfd51a75e9a4e0bfcde81c
Reviewed-on: https://gerrit.libreoffice.org/13443
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/source/win32/workbench/XTDo.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dtrans/source/win32/workbench/XTDo.cxx b/dtrans/source/win32/workbench/XTDo.cxx index 83b446464666..8961285763d6 100644 --- a/dtrans/source/win32/workbench/XTDo.cxx +++ b/dtrans/source/win32/workbench/XTDo.cxx @@ -127,12 +127,12 @@ STDMETHODIMP CXTDataObject::GetData( LPFORMATETC pFormatetc, LPSTGMEDIUM pmedium return E_INVALIDARG; HRESULT hr = E_FAIL; - char pBuff[] = "Test OleClipboard"; if ( CF_TEXT == pFormatetc->cfFormat ) { CHGlobalHelper hGlobHlp( TRUE ); + char pBuff[] = "Test OleClipboard"; hGlobHlp.Write( pBuff, sizeof( pBuff ), NULL ); pmedium->tymed = TYMED_HGLOBAL; |