diff options
author | Mark Page <aptitude@btconnect.com> | 2016-06-09 15:53:20 +0100 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-06-10 07:25:59 +0000 |
commit | 99200d7cc2a952f92074934c647db076aae5e48b (patch) | |
tree | 31fe35cd3e7997f116d64235913c41c958a34ea7 /vcl/osx | |
parent | fc7e6d8445af39ffc6a753d7104167ee8f376b9c (diff) |
tdf#96099 Remove various smart pointer typedefs in vcl
Change-Id: I4ac1bb25d3d63f150b42d9e1708efc344bbdb6a7
Reviewed-on: https://gerrit.libreoffice.org/26113
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'vcl/osx')
-rw-r--r-- | vcl/osx/salinst.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/osx/salinst.cxx b/vcl/osx/salinst.cxx index 31b1542270d3..54c3ba9768b9 100644 --- a/vcl/osx/salinst.cxx +++ b/vcl/osx/salinst.cxx @@ -109,8 +109,8 @@ void AquaSalInstance::delayedSettingsChanged( bool bInvalidate ) pIdle->Start(); } -// the AppEventList must be available before any SalData/SalInst/etc. objects are ready -AquaSalInstance::AppEventList AquaSalInstance::aAppEventList; +// the std::list<const ApplicationEvent*> must be available before any SalData/SalInst/etc. objects are ready +std::list<const ApplicationEvent*> AquaSalInstance::aAppEventList; NSMenu* AquaSalInstance::GetDynamicDockMenu() { |