[Libreoffice-commits] core.git: 2 commits - sc/inc sc/source sd/source vcl/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Wed Nov 20 08:58:53 UTC 2019
sc/inc/colorscale.hxx | 2 +-
sc/inc/column.hxx | 2 +-
sc/source/core/data/colorscale.cxx | 2 +-
sc/source/core/data/column.cxx | 2 +-
sd/source/ui/slidesorter/controller/SlideSorterController.cxx | 2 +-
sd/source/ui/slidesorter/inc/controller/SlideSorterController.hxx | 2 +-
vcl/source/app/salvtables.cxx | 2 +-
7 files changed, 7 insertions(+), 7 deletions(-)
New commits:
commit 1d69cf32a73c0720882731ebf3eb5d2f07fce246
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Fri Oct 18 19:23:40 2019 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Wed Nov 20 09:57:49 2019 +0100
Enable/Disable of children shouldn't be necessary
Change-Id: Ied2c1b1305cd099f0a7a4c403c4a81a94234f363
Reviewed-on: https://gerrit.libreoffice.org/81134
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx
index 4836f14af52e..0e72f42d14c6 100644
--- a/vcl/source/app/salvtables.cxx
+++ b/vcl/source/app/salvtables.cxx
@@ -313,7 +313,7 @@ public:
virtual void set_sensitive(bool sensitive) override
{
- m_xWidget->Enable(sensitive);
+ m_xWidget->Enable(sensitive, false);
}
virtual bool get_sensitive() const override
commit 22fb7b07d79969776f10080ada764a745b63c4b3
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Tue Nov 19 21:29:11 2019 +0000
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Wed Nov 20 09:57:27 2019 +0100
cid#1399334 Uncaught exception
and
cid#1399224 Uncaught exception
cid#1399153 Uncaught exception
cid#1399090 Uncaught exception
Change-Id: Icbafde4a1e1bd1713c25a20337f3e2d0f4103cad
Reviewed-on: https://gerrit.libreoffice.org/83240
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
Tested-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/sc/inc/colorscale.hxx b/sc/inc/colorscale.hxx
index a45f97d15d9e..861ff5e8e2fa 100644
--- a/sc/inc/colorscale.hxx
+++ b/sc/inc/colorscale.hxx
@@ -56,7 +56,7 @@ public:
ScColorScaleEntry();
ScColorScaleEntry(const ScColorScaleEntry& rEntry);
ScColorScaleEntry(ScDocument* pDoc, const ScColorScaleEntry& rEntry);
- ~ScColorScaleEntry();
+ ~ScColorScaleEntry() COVERITY_NOEXCEPT_FALSE;
const Color& GetColor() const { return maColor;}
void SetColor(const Color&);
diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx
index 9b3231ddd48f..18cf3de6231f 100644
--- a/sc/inc/column.hxx
+++ b/sc/inc/column.hxx
@@ -174,7 +174,7 @@ public:
};
ScColumn();
- ~ScColumn();
+ ~ScColumn() COVERITY_NOEXCEPT_FALSE;
void Init(SCCOL nNewCol, SCTAB nNewTab, ScDocument* pDoc, bool bEmptyAttrArray);
diff --git a/sc/source/core/data/colorscale.cxx b/sc/source/core/data/colorscale.cxx
index 774b477b3948..31e83f26a4e3 100644
--- a/sc/source/core/data/colorscale.cxx
+++ b/sc/source/core/data/colorscale.cxx
@@ -197,7 +197,7 @@ ScColorScaleEntry::ScColorScaleEntry(ScDocument* pDoc, const ScColorScaleEntry&
}
}
-ScColorScaleEntry::~ScColorScaleEntry()
+ScColorScaleEntry::~ScColorScaleEntry() COVERITY_NOEXCEPT_FALSE
{
if(mpCell)
mpCell->EndListeningTo(mpCell->GetDocument());
diff --git a/sc/source/core/data/column.cxx b/sc/source/core/data/column.cxx
index ba17b3de4a75..d1b10c128344 100644
--- a/sc/source/core/data/column.cxx
+++ b/sc/source/core/data/column.cxx
@@ -89,7 +89,7 @@ ScColumn::ScColumn() :
maCells.resize(MAXROWCOUNT);
}
-ScColumn::~ScColumn()
+ScColumn::~ScColumn() COVERITY_NOEXCEPT_FALSE
{
FreeAll();
}
diff --git a/sd/source/ui/slidesorter/controller/SlideSorterController.cxx b/sd/source/ui/slidesorter/controller/SlideSorterController.cxx
index 12077e62f117..0d1c019229e9 100644
--- a/sd/source/ui/slidesorter/controller/SlideSorterController.cxx
+++ b/sd/source/ui/slidesorter/controller/SlideSorterController.cxx
@@ -902,7 +902,7 @@ SlideSorterController::ModelChangeLock::ModelChangeLock (
mpController->LockModelChange();
}
-SlideSorterController::ModelChangeLock::~ModelChangeLock()
+SlideSorterController::ModelChangeLock::~ModelChangeLock() COVERITY_NOEXCEPT_FALSE
{
Release();
}
diff --git a/sd/source/ui/slidesorter/inc/controller/SlideSorterController.hxx b/sd/source/ui/slidesorter/inc/controller/SlideSorterController.hxx
index 13409ace971b..7f444ddcee45 100644
--- a/sd/source/ui/slidesorter/inc/controller/SlideSorterController.hxx
+++ b/sd/source/ui/slidesorter/inc/controller/SlideSorterController.hxx
@@ -157,7 +157,7 @@ public:
class ModelChangeLock
{public:
ModelChangeLock(SlideSorterController& rController);
- ~ModelChangeLock();
+ ~ModelChangeLock() COVERITY_NOEXCEPT_FALSE;
void Release();
private:
SlideSorterController* mpController;
More information about the Libreoffice-commits
mailing list