Kaydet (Commit) 4d451439 authored tarafından Muthu Subramanian's avatar Muthu Subramanian

Marking ImplDrawModeToColor as const.

Missed it while reviewing commit:
f9c09fbb
üst f9c09fbb
...@@ -547,7 +547,7 @@ public: ...@@ -547,7 +547,7 @@ public:
// tells whether this output device is RTL in an LTR UI or LTR in a RTL UI // tells whether this output device is RTL in an LTR UI or LTR in a RTL UI
SAL_DLLPRIVATE bool ImplIsAntiparallel() const ; SAL_DLLPRIVATE bool ImplIsAntiparallel() const ;
SAL_DLLPRIVATE Color ImplDrawModeToColor( const Color& rColor ); SAL_DLLPRIVATE Color ImplDrawModeToColor( const Color& rColor ) const;
// #i101491# // #i101491#
// Helper which holds the old line geometry creation and is extended to use AA when // Helper which holds the old line geometry creation and is extended to use AA when
......
...@@ -1238,7 +1238,7 @@ void OutputDevice::SetLineColor() ...@@ -1238,7 +1238,7 @@ void OutputDevice::SetLineColor()
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
Color OutputDevice::ImplDrawModeToColor( const Color& rColor ) Color OutputDevice::ImplDrawModeToColor( const Color& rColor ) const
{ {
Color aColor( rColor ); Color aColor( rColor );
sal_uLong nDrawMode = GetDrawMode(); sal_uLong nDrawMode = GetDrawMode();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment