diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-10-09 16:24:40 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-10-09 16:24:40 +0200 |
commit | 1d2b35ebd30a1361c0e7dfffd60f3d0453339715 (patch) | |
tree | 7dd129a3b06bc263bc51d1b5e671ab509333cf9d /sc | |
parent | e492d7bcd1a6f624b2d0eea14c4bf0872164e533 (diff) |
No need for ScAddInDocs to be a class of its own
Change-Id: Idfc06295dc3dc1a1dcabe9df1df76c47c874f090
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/inc/adiasync.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/inc/adiasync.hxx b/sc/source/core/inc/adiasync.hxx index e398f97ef462..ba444fb98970 100644 --- a/sc/source/core/inc/adiasync.hxx +++ b/sc/source/core/inc/adiasync.hxx @@ -30,7 +30,7 @@ void CALLTYPE ScAddInAsyncCallBack( double& nHandle, void* pData ); } class ScDocument; -class ScAddInDocs : public std::set<ScDocument*> {}; +using ScAddInDocs = std::set<ScDocument*>; class ScAddInAsync : public SvtBroadcaster { |