diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 15:25:41 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 17:52:26 +0200 |
commit | bff4c13475957863bfa7da5bc3bcf82a64a7503a (patch) | |
tree | 23530ecc27cb8d46b26d5d4aea6b058e5fbaf9db /include/sfx2/basedlgs.hxx | |
parent | 27491c28cb67ada0a4c5eaa90eaf589425990582 (diff) |
Replace "SAL_DELETED_FUNCTION" with "= delete" in LIBO_INTERNAL_ONLY code
Change-Id: I328ac7a95ccc87732efae48b567a0556865928f3
Diffstat (limited to 'include/sfx2/basedlgs.hxx')
-rw-r--r-- | include/sfx2/basedlgs.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/sfx2/basedlgs.hxx b/include/sfx2/basedlgs.hxx index 4287d1df9a2a..176e248f6894 100644 --- a/include/sfx2/basedlgs.hxx +++ b/include/sfx2/basedlgs.hxx @@ -60,8 +60,8 @@ class SFX2_DLLPUBLIC SfxModalDialog: public ModalDialog SfxItemSet* pOutputSet; private: - SfxModalDialog(SfxModalDialog &) SAL_DELETED_FUNCTION; - void operator =(SfxModalDialog &) SAL_DELETED_FUNCTION; + SfxModalDialog(SfxModalDialog &) = delete; + void operator =(SfxModalDialog &) = delete; SAL_DLLPRIVATE void SetDialogData_Impl(); SAL_DLLPRIVATE void GetDialogData_Impl(); @@ -94,8 +94,8 @@ class SFX2_DLLPUBLIC SfxModelessDialog: public ModelessDialog Size aSize; SfxModelessDialog_Impl* pImp; - SfxModelessDialog(SfxModelessDialog &) SAL_DELETED_FUNCTION; - void operator =(SfxModelessDialog &) SAL_DELETED_FUNCTION; + SfxModelessDialog(SfxModelessDialog &) = delete; + void operator =(SfxModelessDialog &) = delete; void Init(SfxBindings *pBindinx, SfxChildWindow *pCW); @@ -128,8 +128,8 @@ class SFX2_DLLPUBLIC SfxFloatingWindow: public FloatingWindow Size aSize; SfxFloatingWindow_Impl* pImp; - SfxFloatingWindow(SfxFloatingWindow &) SAL_DELETED_FUNCTION; - void operator =(SfxFloatingWindow &) SAL_DELETED_FUNCTION; + SfxFloatingWindow(SfxFloatingWindow &) = delete; + void operator =(SfxFloatingWindow &) = delete; protected: SfxFloatingWindow( SfxBindings *pBindings, |