summaryrefslogtreecommitdiff
path: root/svx/workben
diff options
context:
space:
mode:
Diffstat (limited to 'svx/workben')
-rw-r--r--svx/workben/msview/msview.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/svx/workben/msview/msview.cxx b/svx/workben/msview/msview.cxx
index 1a24d6652897..9760d2af24f7 100644
--- a/svx/workben/msview/msview.cxx
+++ b/svx/workben/msview/msview.cxx
@@ -487,7 +487,8 @@ public:
~AtomBoxString() { }
- void Paint( const Point& rPos, SvLBox& rOutDev, USHORT nViewDataEntryFlags, SvTreeListEntry* pEntry )
+ virtual void Paint(
+ const Point& rPos, SvLBox& rOutDev, const SvViewDataEntry* pView, const SvTreeListEntry* pEntry)
{
Color aOldTextColor = rOutDev.GetTextColor();
@@ -497,7 +498,7 @@ public:
rOutDev.SetTextColor( Color( gColors[ pAtom->getCompareStatus() ] ) );
}
- SvLBoxString::Paint( rPos, rOutDev, nViewDataEntryFlags, pEntry );
+ SvLBoxString::Paint(rPos, rOutDev, pView, pEntry);
rOutDev.SetTextColor( aOldTextColor );
}