summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorAlex Henrie <alexhenrie24@gmail.com>2019-12-02 19:45:14 -0700
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-03 07:12:36 +0100
commit94f0c6dfdec91d9f1d6dccd41315bd986c0ad590 (patch)
treee7ebfaa80e6d9af4016fd3391d9385413f482371 /sd
parentb9930d0d05db39a8466b18dccf626bc3d8ae5c4e (diff)
Fix compilation with `make -- dbglevel=2`
Change-Id: Icdf93751b00453eb033fd577413bd6bc3527f87c Reviewed-on: https://gerrit.libreoffice.org/84286 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd')
-rw-r--r--sd/source/core/CustomAnimationPreset.cxx1
-rw-r--r--sd/source/filter/eppt/pptx-epptooxml.cxx2
-rw-r--r--sd/source/ui/slidesorter/cache/SlsRequestQueue.cxx2
3 files changed, 4 insertions, 1 deletions
diff --git a/sd/source/core/CustomAnimationPreset.cxx b/sd/source/core/CustomAnimationPreset.cxx
index ed20faf74b3b..1f16b3724fc4 100644
--- a/sd/source/core/CustomAnimationPreset.cxx
+++ b/sd/source/core/CustomAnimationPreset.cxx
@@ -18,6 +18,7 @@
*/
#include <sal/config.h>
+#include <sal/log.hxx>
#include <com/sun/star/io/IOException.hpp>
#include <com/sun/star/util/XCloneable.hpp>
diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx
index 9789e20a343c..9d76dbe6ffe3 100644
--- a/sd/source/filter/eppt/pptx-epptooxml.cxx
+++ b/sd/source/filter/eppt/pptx-epptooxml.cxx
@@ -2047,7 +2047,7 @@ void dump_pset(Reference< XPropertySet > const& rXPropSet)
else if (value >>= boolValue)
SAL_INFO("sd.eppt", name << " = " << boolValue << " (bool)");
else if (value >>= pointValue)
- SAL_INFO("sd.eppt", name << " = " << pointValue << " (RectanglePoint)");
+ SAL_INFO("sd.eppt", name << " = " << static_cast<int>(pointValue) << " (RectanglePoint)");
else
SAL_INFO("sd.eppt", "??? <unhandled type>");
}
diff --git a/sd/source/ui/slidesorter/cache/SlsRequestQueue.cxx b/sd/source/ui/slidesorter/cache/SlsRequestQueue.cxx
index bf387210f0c8..ddf609af0c62 100644
--- a/sd/source/ui/slidesorter/cache/SlsRequestQueue.cxx
+++ b/sd/source/ui/slidesorter/cache/SlsRequestQueue.cxx
@@ -19,6 +19,8 @@
#include "SlsRequestQueue.hxx"
+#include <sal/log.hxx>
+
#include <svx/svdpage.hxx>
#include <set>