From 39e9c36ef74ea38f62a2afe79d1514ff461a8970 Mon Sep 17 00:00:00 2001 From: coolo Date: Tue, 27 Nov 2007 17:36:05 +0000 Subject: [PATCH] merged trunk git-svn-id: http://svn.opensuse.org/svn/yast/branches/tmp/coolo/qt4-port@42460 e0cc52ee-31ee-0310-8b87-e83c4596d67c --- VERSION | 2 +- package/yast2-qt4.changes | 11 +++++++++++ src/YQMultiSelectionBox.cc | 9 ++++----- src/YQRichText.cc | 4 ++-- src/pkg/YQPackageSelector.cc | 2 +- src/pkg/YQPatternSelector.cc | 2 +- 6 files changed, 20 insertions(+), 10 deletions(-) diff --git a/VERSION b/VERSION index 37b36c1..99e60c0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.16.3 +2.16.4 diff --git a/package/yast2-qt4.changes b/package/yast2-qt4.changes index 3c22760..88f877d 100644 --- a/package/yast2-qt4.changes +++ b/package/yast2-qt4.changes @@ -1,3 +1,14 @@ +------------------------------------------------------------------- +Tue Nov 27 11:39:21 CET 2007 - tgoettlicher@suse.de + +- V 2.16.4 + +------------------------------------------------------------------- +Mon Nov 26 12:09:03 CET 2007 - tgoettlicher@suse.de + +- Prevent changed size of partition widget when packageselector's + window size is changed + ------------------------------------------------------------------- Mon Nov 26 11:46:18 CET 2007 - coolo@suse.de diff --git a/src/YQMultiSelectionBox.cc b/src/YQMultiSelectionBox.cc index c171ad4..0d60bd9 100644 --- a/src/YQMultiSelectionBox.cc +++ b/src/YQMultiSelectionBox.cc @@ -165,10 +165,10 @@ YQMultiSelectionBox::currentItem() // focus. By default, it is displayed with a faint dotted outline. // // QListView::selectedItem() is the item that is selected in the QListView - // widget. It is displayed a very visible with inverted colors (typically - // blue backround). If there is a selected item, it is also the current - // item. if there is no selected item, there might still be a current item, - // though. + // widget. It is displayed in a very visible way with inverted colors + // (typically blue backround). If there is a selected item, it is also the + // current item. if there is no selected item, there might still be a + // current item, though. // // The Y(Q)MultiSelectionBox item's "selected" state is completely // independent of all this: It only depends on the item's check @@ -301,7 +301,6 @@ YQMultiSelectionBoxItem * YQMultiSelectionBox::findItem( YItem * wantedItem ) { // FIXME: Don't search through all items, use the YItem::data() pointer instead - Q3ListViewItemIterator it( _qt_listView ); while ( *it ) diff --git a/src/YQRichText.cc b/src/YQRichText.cc index 5fd7f94..163dd35 100644 --- a/src/YQRichText.cc +++ b/src/YQRichText.cc @@ -144,8 +144,8 @@ void YQRichText::setAutoScrollDown( bool newAutoScrollDown ) void YQRichText::linkClicked( const QUrl & url ) { - // y2debug( "Selected hyperlink \"%s\"", (const char *) url.toString() ); - YQUI::ui()->sendEvent( new YMenuEvent( YCPString( (const char *) url.toString() ) ) ); + // y2debug( "Selected hyperlink \"%s\"", (const char *) url ); + YQUI::ui()->sendEvent( new YMenuEvent( toUTF8( url ) ) ); } diff --git a/src/pkg/YQPackageSelector.cc b/src/pkg/YQPackageSelector.cc index acd32d3..11f085d 100644 --- a/src/pkg/YQPackageSelector.cc +++ b/src/pkg/YQPackageSelector.cc @@ -245,7 +245,7 @@ YQPackageSelector::layoutLeftPane( QWidget * parent ) Q_CHECK_PTR( _diskUsageList ); splitter->setResizeMode( upper_vbox, QSplitter::Stretch ); - splitter->setResizeMode( lower_vbox, QSplitter::FollowSizeHint ); + splitter->setResizeMode( lower_vbox, QSplitter::KeepSize ); return splitter; } diff --git a/src/pkg/YQPatternSelector.cc b/src/pkg/YQPatternSelector.cc index 60ec96b..a7a8ae0 100644 --- a/src/pkg/YQPatternSelector.cc +++ b/src/pkg/YQPatternSelector.cc @@ -222,7 +222,7 @@ YQPatternSelector::layoutRightPane( QWidget * parent ) Q_CHECK_PTR( _diskUsageList ); splitter->setResizeMode( upper_vbox, QSplitter::Stretch ); - splitter->setResizeMode( lower_vbox, QSplitter::FollowSizeHint ); + splitter->setResizeMode( lower_vbox, QSplitter::KeepSize ); return splitter; } -- 2.39.2