diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-09-11 17:21:52 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-09-11 17:22:15 +0200 |
commit | 65d4139d14ebe9e05b0eb02cb278906e24f6cf20 (patch) | |
tree | e9872b0d9e901cc5e6d0eb29ebdca757e7f8199b /toolkit | |
parent | fc2d90bf8d359367a6b2ecb3409f3b80e212c46a (diff) |
Missing "this->" qualification
Change-Id: I341e73bd2d8a240c4e31916393729efba8d9a4e2
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/scrollabledialog.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/source/awt/scrollabledialog.cxx b/toolkit/source/awt/scrollabledialog.cxx index 012f4a22f6a4..88b0d7d71220 100644 --- a/toolkit/source/awt/scrollabledialog.cxx +++ b/toolkit/source/awt/scrollabledialog.cxx @@ -51,7 +51,7 @@ void ScrollableWrapper<T>::setScrollVisibility( ScrollBarVisibility rVisState ) maVScrollBar.Show(); } if ( mbHasHoriBar || mbHasVertBar ) - SetStyle( T::GetStyle() | WB_CLIPCHILDREN | SCROLL_UPDATE ); + this->SetStyle( T::GetStyle() | WB_CLIPCHILDREN | SCROLL_UPDATE ); } template< class T> |