[Libreoffice-commits] core.git: include/comphelper include/connectivity include/dbaccess include/editeng include/sfx2 include/svl include/svx

Stephan Bergmann sbergman at redhat.com
Wed May 4 12:25:16 UTC 2016


 include/comphelper/accessiblewrapper.hxx      |    1 -
 include/connectivity/paramwrapper.hxx         |    1 -
 include/dbaccess/dbsubcomponentcontroller.hxx |    2 --
 include/editeng/editobj.hxx                   |    1 -
 include/editeng/fieldupdater.hxx              |    1 -
 include/sfx2/frame.hxx                        |    2 --
 include/svl/style.hxx                         |    1 -
 include/svx/gallery1.hxx                      |    1 -
 8 files changed, 10 deletions(-)

New commits:
commit d916619658a2486ee8cdb5d819a6f0308ee07ccf
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Wed May 4 14:23:50 2016 +0200

    No need to explicitly delete ctor the compiler wouldn't implicitly declare
    
    Change-Id: Idd0e764765bd76e1f6a2d8ec6e18ebac27b91ec6

diff --git a/include/comphelper/accessiblewrapper.hxx b/include/comphelper/accessiblewrapper.hxx
index f61948e..3b80872 100644
--- a/include/comphelper/accessiblewrapper.hxx
+++ b/include/comphelper/accessiblewrapper.hxx
@@ -225,7 +225,6 @@ namespace comphelper
     protected:
         virtual ~OAccessibleContextWrapperHelper( );
 
-        OAccessibleContextWrapperHelper() = delete;
         OAccessibleContextWrapperHelper(const OAccessibleContextWrapperHelper&) = delete;
         OAccessibleContextWrapperHelper& operator=(const OAccessibleContextWrapperHelper&) = delete;
     };
diff --git a/include/connectivity/paramwrapper.hxx b/include/connectivity/paramwrapper.hxx
index fa8494b..39e4567 100644
--- a/include/connectivity/paramwrapper.hxx
+++ b/include/connectivity/paramwrapper.hxx
@@ -79,7 +79,6 @@ namespace param
               ::connectivity::ORowSetValue& Value()       { return m_aValue; }
 
     public:
-        ParameterWrapper() = delete;
         ParameterWrapper(
             const css::uno::Reference< css::beans::XPropertySet >& _rxColumn
         );
diff --git a/include/dbaccess/dbsubcomponentcontroller.hxx b/include/dbaccess/dbsubcomponentcontroller.hxx
index e3562a7..5805bdc 100644
--- a/include/dbaccess/dbsubcomponentcontroller.hxx
+++ b/include/dbaccess/dbsubcomponentcontroller.hxx
@@ -76,8 +76,6 @@ namespace dbaui
         virtual void     impl_onModifyChanged();
 
     public:
-        DBSubComponentController() = delete;
-
         bool            isReadOnly()            const;
         bool            isEditable()            const;
         void            setEditable(bool _bEditable);
diff --git a/include/editeng/editobj.hxx b/include/editeng/editobj.hxx
index 4331b06..c0d4f27 100644
--- a/include/editeng/editobj.hxx
+++ b/include/editeng/editobj.hxx
@@ -71,7 +71,6 @@ class EDITENG_DLLPUBLIC EditTextObject : public SfxItemPoolUser
     void CreateData( SvStream& rStrm );
 
 public:
-    EditTextObject() = delete;
     EditTextObject( const EditTextObject& r );
     virtual ~EditTextObject();
     EditTextObject&      operator=( const EditTextObject& ) = delete;
diff --git a/include/editeng/fieldupdater.hxx b/include/editeng/fieldupdater.hxx
index 461e49d..a8bbb5c 100644
--- a/include/editeng/fieldupdater.hxx
+++ b/include/editeng/fieldupdater.hxx
@@ -30,7 +30,6 @@ class EDITENG_DLLPUBLIC FieldUpdater
 public:
     FieldUpdater(EditTextObject& rObj);
     FieldUpdater(const FieldUpdater& r);
-    FieldUpdater() = delete;
     ~FieldUpdater();
 
     /**
diff --git a/include/sfx2/frame.hxx b/include/sfx2/frame.hxx
index c4e6dc6..9264dcb 100644
--- a/include/sfx2/frame.hxx
+++ b/include/sfx2/frame.hxx
@@ -110,8 +110,6 @@ protected:
     SAL_DLLPRIVATE      SfxFrame( vcl::Window& i_rContainerWindow );
 
 public:
-                        SfxFrame() = delete;
-
     static SfxFrame*    Create( const css::uno::Reference< css::frame::XFrame >& xFrame );
     static css::uno::Reference< css::frame::XFrame >
                         CreateBlankFrame();
diff --git a/include/svl/style.hxx b/include/svl/style.hxx
index a471511..8083cb3 100644
--- a/include/svl/style.hxx
+++ b/include/svl/style.hxx
@@ -339,7 +339,6 @@ public:
 class SVL_DLLPUBLIC SfxUnoStyleSheet : public ::cppu::ImplInheritanceHelper2< SfxStyleSheet, css::style::XStyle, css::lang::XUnoTunnel >
 {
 public:
-    SfxUnoStyleSheet() = delete;
     SfxUnoStyleSheet( const OUString& _rName, const SfxStyleSheetBasePool& _rPool, SfxStyleFamily _eFamily, sal_uInt16 _nMaske );
 
     static SfxUnoStyleSheet* getUnoStyleSheet( const css::uno::Reference< css::style::XStyle >& xStyle );
diff --git a/include/svx/gallery1.hxx b/include/svx/gallery1.hxx
index 060f02b..56ac848 100644
--- a/include/svx/gallery1.hxx
+++ b/include/svx/gallery1.hxx
@@ -48,7 +48,6 @@ private:
     static INetURLObject    ImplGetURLIgnoreCase( const INetURLObject& rURL );
 
 public:
-                            GalleryThemeEntry() = delete;
                             GalleryThemeEntry( bool bCreateUniqueURL,
                                                const INetURLObject& rBaseURL,
                                                const OUString& rName,


More information about the Libreoffice-commits mailing list