diff options
-rw-r--r-- | vcl/inc/aqua/saldata.hxx | 4 | ||||
-rw-r--r-- | vcl/inc/ios/saldata.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/vcl/inc/aqua/saldata.hxx b/vcl/inc/aqua/saldata.hxx index 5b75b92903b7..7339d5c14328 100644 --- a/vcl/inc/aqua/saldata.hxx +++ b/vcl/inc/aqua/saldata.hxx @@ -79,9 +79,9 @@ struct FrameHash : public boost::hash<sal_IntPtr> #define INVALID_CURSOR_PTR (NSCursor*)0xdeadbeef -struct SalData +class SalData { - +public: SALTIMERPROC mpTimerProc; // timer callback proc AquaSalInstance *mpFirstInstance; // pointer of first instance std::list<AquaSalFrame*> maFrames; // list of all frames diff --git a/vcl/inc/ios/saldata.hxx b/vcl/inc/ios/saldata.hxx index 73a7081f2f8a..a15d4e82664e 100644 --- a/vcl/inc/ios/saldata.hxx +++ b/vcl/inc/ios/saldata.hxx @@ -75,9 +75,9 @@ struct FrameHash : public boost::hash<sal_IntPtr> { return boost::hash<sal_IntPtr>::operator()( reinterpret_cast<const sal_IntPtr>(frame) ); } }; -struct SalData +class SalData { - +public: SALTIMERPROC mpTimerProc; // timer callback proc IosSalInstance *mpFirstInstance; // pointer of first instance std::list<IosSalFrame*> maFrames; // pointer of first frame |