diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2019-01-07 09:56:19 +0100 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2019-01-07 10:06:03 +0100 |
commit | c099fa431d9934ed8bfe811267168c2a0c4b2cc1 (patch) | |
tree | 65db6b8cddb1af54c89100db124ea61e3b541250 /starmath/source/dialog.cxx | |
parent | d6678591db64117ac8496feeda55e1b7499099fb (diff) |
Fix build: add necessary includes
starmath/source/dialog.cxx needs vcl/combobox.hxx to use
COMBOBOX_ENTRY_NOTFOUND define.
vcl/virdev.hxx is needed to know VirtualDevice ancestors to allow
assignments to pointers to OutputDevice.
Change-Id: Iafd33081ef33f28697e9a03bd4892a781fb2eb27
Reviewed-on: https://gerrit.libreoffice.org/65925
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Tested-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'starmath/source/dialog.cxx')
-rw-r--r-- | starmath/source/dialog.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/starmath/source/dialog.cxx b/starmath/source/dialog.cxx index b8f7b276169b..528983c89e43 100644 --- a/starmath/source/dialog.cxx +++ b/starmath/source/dialog.cxx @@ -26,6 +26,8 @@ #include <svl/eitem.hxx> #include <svl/intitem.hxx> #include <svl/stritem.hxx> +#include <vcl/combobox.hxx> +#include <vcl/virdev.hxx> #include <vcl/weld.hxx> #include <svtools/ctrltool.hxx> #include <vcl/settings.hxx> |