summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-01-10 09:35:58 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-01-10 10:09:29 +0000
commit629cd5caadc6dced0d0f6b48368c5b6e55ea757e (patch)
tree1a50fcad22766893fa74c56907444cc5f4815d4a /vcl
parent84479bc5ab3a185abb57c39d0a0a7a8c763b5875 (diff)
callcatcher: update list
Diffstat (limited to 'vcl')
-rw-r--r--vcl/inc/svids.hrc2
-rw-r--r--vcl/inc/vcl/bmpacc.hxx2
-rw-r--r--vcl/inc/vcl/msgbox.hxx1
-rw-r--r--vcl/source/gdi/bmpacc3.cxx28
-rw-r--r--vcl/source/src/stdtext.src5
-rw-r--r--vcl/source/window/msgbox.cxx9
6 files changed, 1 insertions, 46 deletions
diff --git a/vcl/inc/svids.hrc b/vcl/inc/svids.hrc
index c94d2158d81c..1f60241d6716 100644
--- a/vcl/inc/svids.hrc
+++ b/vcl/inc/svids.hrc
@@ -186,7 +186,7 @@
#define SV_STDTEXT_FIRST SV_STDTEXT_SERVICENOTAVAILABLE
#define SV_STDTEXT_SERVICENOTAVAILABLE 10200
-#define SV_STDTEXT_DONTHINTAGAIN 10201
+
#define SV_STDTEXT_DONTASKAGAIN 10202
#define SV_STDTEXT_DONTWARNAGAIN 10203
#define SV_STDTEXT_ABOUT 10204
diff --git a/vcl/inc/vcl/bmpacc.hxx b/vcl/inc/vcl/bmpacc.hxx
index 4b4416be8f31..3b973c81e36e 100644
--- a/vcl/inc/vcl/bmpacc.hxx
+++ b/vcl/inc/vcl/bmpacc.hxx
@@ -202,8 +202,6 @@ public:
void FillRect( const Rectangle& rRect );
void DrawRect( const Rectangle& rRect );
- void FillPolygon( const Polygon& rPoly );
-
private:
BitmapColor* mpLineColor;
diff --git a/vcl/inc/vcl/msgbox.hxx b/vcl/inc/vcl/msgbox.hxx
index bc8bf8e39bed..6d6c920717ad 100644
--- a/vcl/inc/vcl/msgbox.hxx
+++ b/vcl/inc/vcl/msgbox.hxx
@@ -100,7 +100,6 @@ public:
void SetImage( const Image& rImage ) { maImage = rImage; }
const Image& GetImage() const { return maImage; }
- void SetDefaultCheckBoxText();
void SetCheckBoxText( const XubString& rText ) { maCheckBoxText = rText;}
const XubString& GetCheckBoxText() const { return maCheckBoxText;}
void SetCheckBoxState( sal_Bool bCheck );
diff --git a/vcl/source/gdi/bmpacc3.cxx b/vcl/source/gdi/bmpacc3.cxx
index 17b8db33c085..483e3b596a02 100644
--- a/vcl/source/gdi/bmpacc3.cxx
+++ b/vcl/source/gdi/bmpacc3.cxx
@@ -266,32 +266,4 @@ void BitmapWriteAccess::DrawRect( const Rectangle& rRect )
}
}
-// ------------------------------------------------------------------
-
-void BitmapWriteAccess::FillPolygon( const Polygon& rPoly )
-{
- const sal_uInt16 nSize = rPoly.GetSize();
-
- if( nSize && mpFillColor )
- {
- const BitmapColor& rFillColor = *mpFillColor;
- Region aRegion( rPoly );
- Rectangle aRect;
-
- aRegion.Intersect( Rectangle( Point(), Size( Width(), Height() ) ) );
-
- if( !aRegion.IsEmpty() )
- {
- RegionHandle aRegHandle( aRegion.BeginEnumRects() );
-
- while( aRegion.GetNextEnumRect( aRegHandle, aRect ) )
- for( long nY = aRect.Top(), nEndY = aRect.Bottom(); nY <= nEndY; nY++ )
- for( long nX = aRect.Left(), nEndX = aRect.Right(); nX <= nEndX; nX++ )
- SetPixel( nY, nX, rFillColor );
-
- aRegion.EndEnumRects( aRegHandle );
- }
- }
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/source/src/stdtext.src b/vcl/source/src/stdtext.src
index 9fd1487ce522..53d4fb5306b4 100644
--- a/vcl/source/src/stdtext.src
+++ b/vcl/source/src/stdtext.src
@@ -34,11 +34,6 @@ String SV_STDTEXT_SERVICENOTAVAILABLE
Text [ en-US ] = "The component (%s) could not be loaded.\nPlease start setup with the repair option.";
};
-String SV_STDTEXT_DONTHINTAGAIN
-{
- Text [ en-US ] = "Do not show this information again.";
-};
-
String SV_STDTEXT_DONTASKAGAIN
{
Text [ en-US ] = "Do not show this question again.";
diff --git a/vcl/source/window/msgbox.cxx b/vcl/source/window/msgbox.cxx
index c9e56ef62559..042c629b03ed 100644
--- a/vcl/source/window/msgbox.cxx
+++ b/vcl/source/window/msgbox.cxx
@@ -447,15 +447,6 @@ void MessBox::SetCheckBoxState( sal_Bool bCheck )
// -----------------------------------------------------------------------
-void MessBox::SetDefaultCheckBoxText()
-{
- ResMgr* pResMgr = ImplGetResMgr();
- if( pResMgr )
- maCheckBoxText = XubString( ResId( SV_STDTEXT_DONTHINTAGAIN, *pResMgr ) );
-}
-
-// -----------------------------------------------------------------------
-
Size MessBox::GetOptimalSize(WindowSizeType eType) const
{
switch( eType ) {