diff options
author | Shubham Verma <lifemeansmore008@gmail.com> | 2018-02-24 01:30:09 +0530 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2018-02-27 08:56:36 +0100 |
commit | 63a342ec65f702bfe27de0f0343f75198e6103dc (patch) | |
tree | 261dfb54a0c47eb8c7085cd69222e0878736f651 /include | |
parent | c13f401798c2d9ffb89835378e39bb424220685a (diff) |
tdf#97228 Moved struct FltCallDialogParameter
Moved struct FltCallDialogParameter to svtools/inc as this struct is
used only in the files located there . A separate header file is made
named FltCallDialogParameter.hxx which has this struct and appropriate
modification are done to the inclusion of header files in each file.
Change-Id: I60326b58fcbbb9c34abdb7c3de48667268b5d5e5
Reviewed-on: https://gerrit.libreoffice.org/50265
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/fltcall.hxx | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/vcl/fltcall.hxx b/include/vcl/fltcall.hxx index 1aba65e43aae..6d0b3d223f30 100644 --- a/include/vcl/fltcall.hxx +++ b/include/vcl/fltcall.hxx @@ -30,21 +30,6 @@ class SvStream; class Graphic; namespace vcl { class Window; } -struct FltCallDialogParameter -{ - - VclPtr<vcl::Window> pWindow; - FieldUnit eFieldUnit; - OUString aFilterExt; - - // In and Out PropertySequence for all filter dialogs - css::uno::Sequence< css::beans::PropertyValue > aFilterData; - - FltCallDialogParameter( vcl::Window* pW, FieldUnit eFiUni ) : - pWindow ( pW ), - eFieldUnit ( eFiUni ) {}; -}; - typedef bool (*PFilterCall)(SvStream & rStream, Graphic & rGraphic, FilterConfigItem* pConfigItem); // Of this type are both export-filter and import-filter functions |