diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-06-27 23:18:37 +0200 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2014-06-28 11:17:56 +0200 |
commit | 4ad08a7008dbf8e2161249c95ce51c56e31ccee6 (patch) | |
tree | 3a31fa05bc16b3c9f410c4d8ee96db5766d8ccd2 /sw | |
parent | 6f9f28f8e122fac74ffbc93814f30ca43cca92a0 (diff) |
sal_uInt16 to short
Change-Id: I6d39bc1a1132972eece99f1ea05cb25962805351
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/uibase/wrtsh/wrtsh2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/wrtsh/wrtsh2.cxx b/sw/source/uibase/wrtsh/wrtsh2.cxx index 36d2321ed5fc..3b1896cd9209 100644 --- a/sw/source/uibase/wrtsh/wrtsh2.cxx +++ b/sw/source/uibase/wrtsh/wrtsh2.cxx @@ -227,7 +227,7 @@ bool SwWrtShell::StartDropDownFldDlg(SwField* pFld, bool bNextButton, OString* p OSL_ENSURE(pDlg, "Dialogdiet fail!"); if(pWindowState && !pWindowState->isEmpty()) pDlg->SetWindowState(*pWindowState); - sal_uInt16 nRet = pDlg->Execute(); + const short nRet = pDlg->Execute(); if(pWindowState) *pWindowState = pDlg->GetWindowState(); pDlg.reset(); |