[Lprof-devel] lprof/src/IDqt profileid.cpp,1.20,1.20.2.1
Brought to you by:
hvengel
From: Amit K. <ami...@us...> - 2009-06-30 00:01:37
|
Update of /cvsroot/lprof/lprof/src/IDqt In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv20052/IDqt Modified Files: Tag: GSoC-2009 profileid.cpp Log Message: Index: profileid.cpp =================================================================== RCS file: /cvsroot/lprof/lprof/src/IDqt/profileid.cpp,v retrieving revision 1.20 retrieving revision 1.20.2.1 diff -C2 -d -r1.20 -r1.20.2.1 *** profileid.cpp 18 May 2009 21:17:17 -0000 1.20 --- profileid.cpp 30 Jun 2009 00:00:09 -0000 1.20.2.1 *************** *** 49,52 **** --- 49,54 ---- #include "main.h" + #include <QFileDialog> + #if !defined(__WIN32__) && (defined(_WIN32) || defined(WIN32)) #define __WIN32__ *************** *** 163,171 **** outprofile = OutputFileEdit -> text(); ! QString fn = Q3FileDialog::getSaveFileName( outprofile, ! tr("icc profiles (*.icc *.icm)\nAll files (*.*)"), ! this, ! "", ! tr("Select output profile filename")); if (fn != QString::null) { --- 165,171 ---- outprofile = OutputFileEdit -> text(); ! QString fn = QFileDialog::getSaveFileName( this, tr("Select output profile filename"), outprofile, ! tr("icc profiles (*.icc *.icm)\nAll files (*.*)")); ! if (fn != QString::null) { |