diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-08 10:47:05 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-01-08 10:47:05 +1100 |
commit | 86338fbb94324ede329e1d232eeaf70f2fde696e (patch) | |
tree | 3d6f32a07123ce5cf88f202b359f38d9df973875 /vcl/source/control/combobox.cxx | |
parent | f666550ba2c00323020127a4b7446f92e5d0d91a (diff) |
vcl: ComboBox::ImplUserDrawHandler was in the void namespace...
I'm amazed that C++ allows you to do this, but I checked the draft
standard and there appears to be no restrictions around using a
C++ keyword as a namespace identifier!
This hasn't been an issue it appears because we don't have any
user-defined draw signals for combobox's currently.
This was picked up by Doxygen, which spat out the following error:
/home/chris/repos/libreoffice/vcl/source/control/combobox.cxx:1322 warning: no uniquely matching class member found for
void::ComboBox::Impl::ImplUserDrawHandler(UserDrawEvent *pEvent)
Issue introduced in commit d6a83d3f913, I checked it and it was the
only place this occured in the patch.
Change-Id: Ie4272e5c4e3dba13ed82457bba8579971a5345d0
Diffstat (limited to 'vcl/source/control/combobox.cxx')
-rw-r--r-- | vcl/source/control/combobox.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/combobox.cxx b/vcl/source/control/combobox.cxx index 9327e3546e92..7e46076eb1f8 100644 --- a/vcl/source/control/combobox.cxx +++ b/vcl/source/control/combobox.cxx @@ -1319,7 +1319,7 @@ void ComboBox::Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, D } -void::ComboBox::Impl::ImplUserDrawHandler( UserDrawEvent* pEvent ) +void ComboBox::Impl::ImplUserDrawHandler( UserDrawEvent* pEvent ) { m_rThis.UserDraw(*pEvent); } |