Mailinglist Archive: yast-commit (1042 mails)

< Previous Next >
[yast-commit] r44129 - in /trunk/qt: VERSION.cmake package/yast2-qt.changes src/YQApplication.cc
  • From: tgoettlicher@xxxxxxxxxxxxxxxx
  • Date: Mon, 04 Feb 2008 15:06:54 -0000
  • Message-id: <20080204150654.45E2131BE5@xxxxxxxxxxxxxxxx>
Author: tgoettlicher
Date: Mon Feb 4 16:06:53 2008
New Revision: 44129

URL: http://svn.opensuse.org/viewcvs/yast?rev=44129&view=rev
Log:
Adapted askForSaveFilename to qt4 api (bnc #357998)

Modified:
trunk/qt/VERSION.cmake
trunk/qt/package/yast2-qt.changes
trunk/qt/src/YQApplication.cc

Modified: trunk/qt/VERSION.cmake
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/qt/VERSION.cmake?rev=44129&r1=44128&r2=44129&view=diff
==============================================================================
--- trunk/qt/VERSION.cmake (original)
+++ trunk/qt/VERSION.cmake Mon Feb 4 16:06:53 2008
@@ -1,3 +1,3 @@
SET(VERSION_MAJOR "2")
SET(VERSION_MINOR "16")
-SET(VERSION_PATCH "23")
+SET(VERSION_PATCH "24")

Modified: trunk/qt/package/yast2-qt.changes
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/qt/package/yast2-qt.changes?rev=44129&r1=44128&r2=44129&view=diff
==============================================================================
--- trunk/qt/package/yast2-qt.changes (original)
+++ trunk/qt/package/yast2-qt.changes Mon Feb 4 16:06:53 2008
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Fri Feb 4 16:01:22 CET 2008 - tgoettlicher@xxxxxxx
+
+- Adapted askForSaveFilename to qt4 api (bnc #357998)
+- V 2.16.24
+
+-------------------------------------------------------------------
Fri Feb 4 13:48:16 CET 2008 - tgoettlicher@xxxxxxx

- Fixed Bug #340898: Selecting specific repository out of sync

Modified: trunk/qt/src/YQApplication.cc
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/qt/src/YQApplication.cc?rev=44129&r1=44128&r2=44129&view=diff
==============================================================================
--- trunk/qt/src/YQApplication.cc (original)
+++ trunk/qt/src/YQApplication.cc Mon Feb 4 16:06:53 2008
@@ -416,9 +416,12 @@
#endif

QString dirName =
- QFileDialog::getExistingDirectory( 0,
- fromUTF8( startDir ),
- fromUTF8( headline ) ); //
caption
+ QFileDialog::getExistingDirectory( 0, //
parent
+ fromUTF8( headline ) , //
caption
+ fromUTF8( startDir )); // dir
+
+
+
#if 0
busyCursor();
#endif
@@ -437,9 +440,10 @@
#endif

QString fileName =
- QFileDialog::getOpenFileName( 0, fromUTF8( startWith ),
- fromUTF8( filter ),
- fromUTF8( headline ) ); // caption
+ QFileDialog::getOpenFileName( 0, //
parent
+ fromUTF8( headline ) , //
caption
+ fromUTF8( startWith ), // dir
+ fromUTF8( filter )); //
filter

#if 0
busyCursor();
@@ -483,9 +487,10 @@
// Leave the mouse cursor alone - this function might be called from
// some other widget, not only from UI::AskForSaveFileName().

- fileName = QFileDialog::getSaveFileName( 0, startWith,
- filter,
- headline ); //
caption
+ fileName = QFileDialog::getSaveFileName( 0, //
parent
+ headline, //
caption
+ startWith, // dir
+ filter ); //
filter

if ( fileName.isEmpty() ) // this includes fileName.isNull()
return QString::null;

--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread
  • No further messages