diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2016-08-04 09:22:20 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2016-08-04 09:22:20 +0000 |
| commit | cc54d0bc9da8aafcb3d4a6529d829f76f218dc29 (patch) | |
| tree | 11c80a4a1f3ebedee3169cd5eb5d9822c539712e | |
| parent | Add legacy verb SP_VERB_SELECTION_OUTLINE_LEGACY as pointed in bug 1556592#14 (diff) | |
| download | inkscape-cc54d0bc9da8aafcb3d4a6529d829f76f218dc29.tar.gz inkscape-cc54d0bc9da8aafcb3d4a6529d829f76f218dc29.zip | |
Fix Win32 build
Fixed bugs:
- https://launchpad.net/bugs/1609572
(bzr r15037)
| -rw-r--r-- | src/ui/dialog/filedialog.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ui/dialog/filedialog.cpp b/src/ui/dialog/filedialog.cpp index ee673aecf..0d4fa5c84 100644 --- a/src/ui/dialog/filedialog.cpp +++ b/src/ui/dialog/filedialog.cpp @@ -15,7 +15,11 @@ * Released under GNU GPL, read the file 'COPYING' for more information */ -#include "filedialogimpl-win32.h" +#ifdef WIN32 +# include "filedialogimpl-win32.h" +# include "preferences.h" +#endif + #include "filedialogimpl-gtkmm.h" #include "ui/dialog-events.h" |
