summaryrefslogtreecommitdiffstats
path: root/sfx2
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-10-23 14:05:00 +0000
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-10-23 17:13:47 +0000
commit40d39343cccff39e1f83c4553fda45478de577a9 (patch)
treec8002416750f975e37db017f165509a8a820058a /sfx2
parentat which point SfxBindings is no longer needed as an argument (diff)
downloadcore-40d39343cccff39e1f83c4553fda45478de577a9.tar.gz
core-40d39343cccff39e1f83c4553fda45478de577a9.zip
fix short type for .uno: and slot: URLs
introduced in initial commit: 00885a1af84ae2f6697000702b439ca789f79627 INTEGRATION: CWS layoutmanager (1.27.18); FILE MERGED Change-Id: I7d59316dcaaca2986927bcaebe8029cf82e9eceb Reviewed-on: https://gerrit.libreoffice.org/30178 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/control/unoctitm.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx
index 4deb98744156..de693a1a65f6 100644
--- a/sfx2/source/control/unoctitm.cxx
+++ b/sfx2/source/control/unoctitm.cxx
@@ -399,7 +399,7 @@ void SfxDispatchController_Impl::addParametersToArgs( const css::util::URL& aURL
else if ( aParamType.equalsAsciiL( URLTypeNames[URLType_SHORT], 5 ))
{
// SHORT support
- rArgs[nLen].Value <<= sal_Int8( aValue.toInt32() );
+ rArgs[nLen].Value <<= sal_Int16( aValue.toInt32() );
}
else if ( aParamType.equalsAsciiL( URLTypeNames[URLType_HYPER], 5 ))
{