summaryrefslogtreecommitdiffstats
path: root/svtools/source/control/hyperlabel.cxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2005-01-31 08:25:36 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2005-01-31 08:25:36 +0000
commit86bfc2813491da512ff7674175ec2972dbccfee0 (patch)
treead92e97a708962e78877ad28ab0d1cf6d6663e46 /svtools/source/control/hyperlabel.cxx
parentINTEGRATION: CWS vcl34 (1.111.26); FILE MERGED (diff)
downloadcore-86bfc2813491da512ff7674175ec2972dbccfee0.tar.gz
core-86bfc2813491da512ff7674175ec2972dbccfee0.zip
INTEGRATION: CWS vcl34 (1.4.48); FILE MERGED
2005/01/07 14:36:19 dv 1.4.48.1: #i38359# Use some extra space for proper painting of focus rect
Diffstat (limited to 'svtools/source/control/hyperlabel.cxx')
-rw-r--r--svtools/source/control/hyperlabel.cxx9
1 files changed, 7 insertions, 2 deletions
diff --git a/svtools/source/control/hyperlabel.cxx b/svtools/source/control/hyperlabel.cxx
index 9527d73a90c4..e504791eaaee 100644
--- a/svtools/source/control/hyperlabel.cxx
+++ b/svtools/source/control/hyperlabel.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: hyperlabel.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: kz $ $Date: 2004-11-26 20:40:27 $
+ * last change: $Author: rt $ $Date: 2005-01-31 09:25:36 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -175,6 +175,11 @@ namespace svt
const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
m_pImpl = new HyperLabelImpl;
ToggleBackgroundColor( COL_TRANSPARENT );
+
+ WinBits nWinStyle = GetStyle();
+ nWinStyle |= WB_EXTRAOFFSET;
+ SetStyle( nWinStyle );
+
Show();
}