diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-03-04 08:56:11 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-03-04 08:56:11 +0200 |
commit | c9bb48386bad7d2a40e6958883328145ae439cad (patch) | |
tree | 8576ed314b2d219fdd96b8c1990f16fb70847a54 /toolkit/source/awt/vclxwindows.cxx | |
parent | 9865440d217d975206a3f91612f0666312bc8fd8 (diff) |
Revert "new loplugin typedefparam"
This reverts commit 9865440d217d975206a3f91612f0666312bc8fd8.
This is not ready to land yet, seems like the latest update
of the logic reveals a bunch more places I need to fix before it can land.
Diffstat (limited to 'toolkit/source/awt/vclxwindows.cxx')
-rw-r--r-- | toolkit/source/awt/vclxwindows.cxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/toolkit/source/awt/vclxwindows.cxx b/toolkit/source/awt/vclxwindows.cxx index b25cdce8acba..d68c09a9eef6 100644 --- a/toolkit/source/awt/vclxwindows.cxx +++ b/toolkit/source/awt/vclxwindows.cxx @@ -220,7 +220,7 @@ void VCLXGraphicControl::ImplSetNewImage() pButton->SetModeImage( GetImage() ); } -void VCLXGraphicControl::setPosSize( sal_Int32 X, sal_Int32 Y, sal_Int32 Width, sal_Int32 Height, sal_Int16 Flags ) +void VCLXGraphicControl::setPosSize( sal_Int32 X, sal_Int32 Y, sal_Int32 Width, sal_Int32 Height, short Flags ) { SolarMutexGuard aGuard; @@ -863,7 +863,7 @@ void VCLXCheckBox::setLabel( const OUString& rLabel ) pWindow->SetText( rLabel ); } -void VCLXCheckBox::setState( sal_Int16 n ) +void VCLXCheckBox::setState( short n ) { SolarMutexGuard aGuard; @@ -891,11 +891,11 @@ void VCLXCheckBox::setState( sal_Int16 n ) } } -sal_Int16 VCLXCheckBox::getState() +short VCLXCheckBox::getState() { SolarMutexGuard aGuard; - sal_Int16 nState = -1; + short nState = -1; VclPtr< CheckBox > pCheckBox = GetAs< CheckBox >(); if ( pCheckBox ) { @@ -2956,7 +2956,7 @@ OUString VCLXFixedHyperlink::getURL( ) return aText; } -void VCLXFixedHyperlink::setAlignment( sal_Int16 nAlign ) +void VCLXFixedHyperlink::setAlignment( short nAlign ) { SolarMutexGuard aGuard; @@ -2977,11 +2977,11 @@ void VCLXFixedHyperlink::setAlignment( sal_Int16 nAlign ) } } -sal_Int16 VCLXFixedHyperlink::getAlignment() +short VCLXFixedHyperlink::getAlignment() { SolarMutexGuard aGuard; - sal_Int16 nAlign = 0; + short nAlign = 0; VclPtr< vcl::Window > pWindow = GetWindow(); if ( pWindow ) { @@ -3204,7 +3204,7 @@ OUString VCLXFixedText::getText() return aText; } -void VCLXFixedText::setAlignment( sal_Int16 nAlign ) +void VCLXFixedText::setAlignment( short nAlign ) { SolarMutexGuard aGuard; @@ -3225,11 +3225,11 @@ void VCLXFixedText::setAlignment( sal_Int16 nAlign ) } } -sal_Int16 VCLXFixedText::getAlignment() +short VCLXFixedText::getAlignment() { SolarMutexGuard aGuard; - sal_Int16 nAlign = 0; + short nAlign = 0; VclPtr< vcl::Window > pWindow = GetWindow(); if ( pWindow ) { |