From 574b2ac06fd63abb170bae5d2718fef468b8a1b4 Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Tue, 3 Jul 2007 06:41:54 +0000 Subject: [PATCH] Use native file dialog on non cygwin windows installation (fix bug 3907). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18972 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/FileDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/qt4/FileDialog.cpp b/src/frontends/qt4/FileDialog.cpp index 92ed6d349a..5e8e42139f 100644 --- a/src/frontends/qt4/FileDialog.cpp +++ b/src/frontends/qt4/FileDialog.cpp @@ -31,7 +31,7 @@ * * Therefore there is a tradeoff in enabling or disabling this (JMarc) */ -#ifdef Q_WS_MACX +#if defined(Q_WS_MACX) || (defined(Q_WS_WIN) && !defined(Q_CYGWIN_WIN)) #define USE_NATIVE_FILEDIALOG 1 #endif -- 2.39.2