diff options
author | Noel Grandin <noel@peralex.com> | 2015-01-06 10:29:11 +0200 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-04-09 19:57:33 +0100 |
commit | a632fa5f2e059642f0feffb200e8c9a71ee75802 (patch) | |
tree | ab1c9cc0dee047fd2fa2d050ebeb12c6ab8bb6a9 /vcl/workben | |
parent | 10981bc4e349f59818d8f750db378e1ae579ba09 (diff) |
vcl: rename VclReference to VclPtr
and remove the typedefs. The code is more obvious this way.
Change-Id: I4c8f5b5ab050dd96216302a03e760ed0e3ab3464
Diffstat (limited to 'vcl/workben')
-rw-r--r-- | vcl/workben/svpclient.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/workben/svpclient.cxx b/vcl/workben/svpclient.cxx index b3ad5db2694f..708efb9144d3 100644 --- a/vcl/workben/svpclient.cxx +++ b/vcl/workben/svpclient.cxx @@ -92,10 +92,10 @@ SAL_IMPLEMENT_MAIN() class MyWin : public WorkWindow { - PushButtonPtr m_aListButton; - ListBoxPtr m_aSvpBitmaps; - ImageControlPtr m_aImage; - PushButtonPtr m_aQuitButton; + VclPtr<PushButton> m_aListButton; + VclPtr<ListBox> m_aSvpBitmaps; + VclPtr<ImageControl> m_aImage; + VclPtr<PushButton> m_aQuitButton; public: MyWin( vcl::Window* pParent, WinBits nWinStyle ); |