summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-08-02 13:18:21 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-08-02 13:18:21 +0000
commitff9afebc1d6c34be2b9f17448b0314a39d75d616 (patch)
treea6ab04a910bf101d787e2173ce46830d144df1a9 /toolkit
parent52313d8b258544db274cb06ad76357ec2811e922 (diff)
INTEGRATION: CWS rpt23fix01 (1.76.8); FILE MERGED
2007/07/16 09:37:06 oj 1.76.8.1: #i77181# change order of calling
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/awt/vclxwindow.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolkit/source/awt/vclxwindow.cxx b/toolkit/source/awt/vclxwindow.cxx
index e5afb5212e44..9bcf38a5addd 100644
--- a/toolkit/source/awt/vclxwindow.cxx
+++ b/toolkit/source/awt/vclxwindow.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: vclxwindow.cxx,v $
*
- * $Revision: 1.76 $
+ * $Revision: 1.77 $
*
- * last change: $Author: rt $ $Date: 2007-07-06 14:26:58 $
+ * last change: $Author: hr $ $Date: 2007-08-02 14:18:21 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -1730,8 +1730,8 @@ void VCLXWindow::setProperty( const ::rtl::OUString& PropertyName, const ::com::
if ( Value >>= nColor )
{
Color aColor( nColor );
- pWindow->SetBackground( aColor );
pWindow->SetControlBackground( aColor );
+ pWindow->SetBackground( aColor );
pWindow->Invalidate(); // Falls das Control nicht drauf reagiert
}
}