commit yast2-qt for openSUSE:Factory

2012-05-07 Thread h_root
Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory 
checked in at 2012-05-07 22:54:02

Comparing /work/SRC/openSUSE:Factory/yast2-qt (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-qt.new (New)


Package is "yast2-qt", Maintainer is "tgoettlic...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-qt/yast2-qt.changes2012-04-23 
16:14:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-qt.new/yast2-qt.changes   2012-05-07 
22:54:03.0 +0200
@@ -1,0 +2,6 @@
+Fri May  4 10:22:36 CEST 2012 - tgoettlic...@suse.de
+
+- Sort numeric table columns in numeric order
+- Version: 2.22.6
+
+---

Old:

  yast2-qt-2.22.5.tar.bz2

New:

  yast2-qt-2.22.6.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.78yQSs/_old  2012-05-07 22:54:04.0 +0200
+++ /var/tmp/diff_new_pack.78yQSs/_new  2012-05-07 22:54:04.0 +0200
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.22.5
+Version:2.22.6
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.22.5.tar.bz2
+Source0:yast2-qt-2.22.6.tar.bz2
 Group:  System/YaST
 License:GPL-2.0
 BuildRequires:  docbook-xsl-stylesheets

++ yast2-qt-2.22.5.tar.bz2 -> yast2-qt-2.22.6.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.5/VERSION.cmake 
new/yast2-qt-2.22.6/VERSION.cmake
--- old/yast2-qt-2.22.5/VERSION.cmake   2012-04-10 15:42:07.0 +0200
+++ new/yast2-qt-2.22.6/VERSION.cmake   2012-05-04 15:34:45.0 +0200
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "2")
 SET(VERSION_MINOR "22")
-SET(VERSION_PATCH "5")
+SET(VERSION_PATCH "6")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.5/package/yast2-qt.changes 
new/yast2-qt-2.22.6/package/yast2-qt.changes
--- old/yast2-qt-2.22.5/package/yast2-qt.changes2012-04-10 
15:42:07.0 +0200
+++ new/yast2-qt-2.22.6/package/yast2-qt.changes2012-05-04 
15:34:45.0 +0200
@@ -1,4 +1,10 @@
 ---
+Fri May  4 10:22:36 CEST 2012 - tgoettlic...@suse.de
+
+- Sort numeric table columns in numeric order
+- Version: 2.22.6
+
+---
 Tue Apr 10 15:40:58 CEST 2012 - tgoettlic...@suse.de
 
 - BuildRequire libxcrypt-devel only for < 12.2 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.5/src/QY2ListView.cc 
new/yast2-qt-2.22.6/src/QY2ListView.cc
--- old/yast2-qt-2.22.5/src/QY2ListView.cc  2012-04-10 15:42:07.0 
+0200
+++ new/yast2-qt-2.22.6/src/QY2ListView.cc  2012-05-04 15:34:45.0 
+0200
@@ -437,6 +437,25 @@
 
 }
 
+// numeric sorting if columns are numbers
+int column = treeWidget()->sortColumn();
+QString text1=text(column).trimmed();
+QString text2=otherListViewItem.text(column).trimmed();
+
+text1=text1.left(text1.indexOf(QChar(' '))); 
+text2=text2.left(text2.indexOf(QChar(' ')));
+  
+bool ok1, ok2; // conversion to int successful
+bool retval = text1.toInt(&ok1) < text2.toInt(&ok2);
+
+if (ok1 && ok2 )
+return retval; // int < int
+else if (ok1 && !ok2)  
+return true;   // int < string
+else if (!ok1 && ok2)  
+return false;  // string > int
+
+// and finally non-numeric sorting is done by the base class
 return QTreeWidgetItem::operator<(otherListViewItem);
 }
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-qt for openSUSE:Factory

2012-04-23 Thread h_root
Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory 
checked in at 2012-04-23 16:14:29

Comparing /work/SRC/openSUSE:Factory/yast2-qt (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-qt.new (New)


Package is "yast2-qt", Maintainer is "tgoettlic...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-qt/yast2-qt.changes2012-02-24 
06:54:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-qt.new/yast2-qt.changes   2012-04-23 
16:14:30.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 10 15:40:58 CEST 2012 - tgoettlic...@suse.de
+
+- BuildRequire libxcrypt-devel only for < 12.2 
+- Version: 2.22.5
+
+---

Old:

  yast2-qt-2.22.4.tar.bz2

New:

  yast2-qt-2.22.5.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.ylRUa1/_old  2012-04-23 16:14:31.0 +0200
+++ /var/tmp/diff_new_pack.ylRUa1/_new  2012-04-23 16:14:31.0 +0200
@@ -18,24 +18,26 @@
 
 
 Name:   yast2-qt
-Version:2.22.4
+Version:2.22.5
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.22.4.tar.bz2
+Source0:yast2-qt-2.22.5.tar.bz2
 Group:  System/YaST
 License:GPL-2.0
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  doxygen
 BuildRequires:  libdrm-devel
 BuildRequires:  libjpeg-devel
-BuildRequires:  libxcrypt-devel
 BuildRequires:  libxslt
 BuildRequires:  perl-XML-Writer
 BuildRequires:  libqt4-devel
 BuildRequires:  sgml-skel
 BuildRequires:  update-desktop-files
 BuildRequires:  cmake
+%if 0%{?suse_version} < 1220
+BuildRequires:  libxcrypt-devel
+%endif
 %requires_ge   libqt4 
 
 Summary:YaST2 - Graphical User Interface

++ yast2-qt-2.22.4.tar.bz2 -> yast2-qt-2.22.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.4/VERSION.cmake 
new/yast2-qt-2.22.5/VERSION.cmake
--- old/yast2-qt-2.22.4/VERSION.cmake   2012-02-23 15:16:05.0 +0100
+++ new/yast2-qt-2.22.5/VERSION.cmake   2012-04-10 15:42:07.0 +0200
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "2")
 SET(VERSION_MINOR "22")
-SET(VERSION_PATCH "4")
+SET(VERSION_PATCH "5")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.4/package/yast2-qt.changes 
new/yast2-qt-2.22.5/package/yast2-qt.changes
--- old/yast2-qt-2.22.4/package/yast2-qt.changes2012-02-23 
15:16:05.0 +0100
+++ new/yast2-qt-2.22.5/package/yast2-qt.changes2012-04-10 
15:42:07.0 +0200
@@ -1,4 +1,10 @@
 ---
+Tue Apr 10 15:40:58 CEST 2012 - tgoettlic...@suse.de
+
+- BuildRequire libxcrypt-devel only for < 12.2 
+- Version: 2.22.5
+
+---
 Thu Feb 23 15:12:05 CET 2012 - tgoettlic...@suse.de
 
 - Fixed selection Table widget (bnc#746156) 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.4/yast2-qt.spec.in 
new/yast2-qt-2.22.5/yast2-qt.spec.in
--- old/yast2-qt-2.22.4/yast2-qt.spec.in2012-02-23 15:16:05.0 
+0100
+++ new/yast2-qt-2.22.5/yast2-qt.spec.in2012-04-10 15:42:07.0 
+0200
@@ -8,13 +8,15 @@
 BuildRequires: doxygen 
 BuildRequires: libdrm-devel 
 BuildRequires: libjpeg-devel 
-BuildRequires: libxcrypt-devel 
 BuildRequires: libxslt 
 BuildRequires: perl-XML-Writer 
 BuildRequires: libqt4-devel 
 BuildRequires: sgml-skel 
 BuildRequires: update-desktop-files
 BuildRequires:  cmake
+%if 0%{?suse_version} < 1220
+BuildRequires:  libxcrypt-devel
+%endif
 %requires_ge   libqt4 
 
 Summary:   YaST2 - Graphical User Interface

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-qt for openSUSE:Factory

2012-02-23 Thread h_root
Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory 
checked in at 2012-02-24 06:54:55

Comparing /work/SRC/openSUSE:Factory/yast2-qt (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-qt.new (New)


Package is "yast2-qt", Maintainer is "tgoettlic...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-qt/yast2-qt.changes2012-02-20 
16:20:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-qt.new/yast2-qt.changes   2012-02-24 
06:54:58.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 23 15:12:05 CET 2012 - tgoettlic...@suse.de
+
+- Fixed selection Table widget (bnc#746156) 
+- Version: 2.22.4
+
+---

Old:

  yast2-qt-2.22.3.tar.bz2

New:

  yast2-qt-2.22.4.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.EGrLvM/_old  2012-02-24 06:55:00.0 +0100
+++ /var/tmp/diff_new_pack.EGrLvM/_new  2012-02-24 06:55:00.0 +0100
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.22.3
+Version:2.22.4
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.22.3.tar.bz2
+Source0:yast2-qt-2.22.4.tar.bz2
 Group:  System/YaST
 License:GPL-2.0
 BuildRequires:  docbook-xsl-stylesheets

++ yast2-qt-2.22.3.tar.bz2 -> yast2-qt-2.22.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.3/VERSION.cmake 
new/yast2-qt-2.22.4/VERSION.cmake
--- old/yast2-qt-2.22.3/VERSION.cmake   2012-02-17 16:18:32.0 +0100
+++ new/yast2-qt-2.22.4/VERSION.cmake   2012-02-23 15:16:05.0 +0100
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "2")
 SET(VERSION_MINOR "22")
-SET(VERSION_PATCH "3")
+SET(VERSION_PATCH "4")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.3/package/yast2-qt.changes 
new/yast2-qt-2.22.4/package/yast2-qt.changes
--- old/yast2-qt-2.22.3/package/yast2-qt.changes2012-02-17 
16:18:32.0 +0100
+++ new/yast2-qt-2.22.4/package/yast2-qt.changes2012-02-23 
15:16:05.0 +0100
@@ -1,4 +1,10 @@
 ---
+Thu Feb 23 15:12:05 CET 2012 - tgoettlic...@suse.de
+
+- Fixed selection Table widget (bnc#746156) 
+- Version: 2.22.4
+
+---
 Fri Feb 17 16:17:32 CET 2012 - tgoettlic...@suse.de
 
 - Fixed selection and sorting in Table widget (bnc#746156) 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.3/src/YQTable.cc 
new/yast2-qt-2.22.4/src/YQTable.cc
--- old/yast2-qt-2.22.3/src/YQTable.cc  2012-02-17 16:18:32.0 +0100
+++ new/yast2-qt-2.22.4/src/YQTable.cc  2012-02-23 15:16:05.0 +0100
@@ -296,7 +296,7 @@
 void
 YQTable::slotSelected( QTreeWidgetItem * listViewItem  )
 {
-if ( listViewItem && listViewItem->isSelected() )
+if ( listViewItem && _qt_listView->selectedItems().count() > 0 )
selectOrigItem( listViewItem );
 else
 {

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-qt for openSUSE:Factory

2012-02-20 Thread h_root
Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory 
checked in at 2012-02-20 16:20:12

Comparing /work/SRC/openSUSE:Factory/yast2-qt (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-qt.new (New)


Package is "yast2-qt", Maintainer is "tgoettlic...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-qt/yast2-qt.changes2012-02-08 
17:21:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-qt.new/yast2-qt.changes   2012-02-20 
16:20:13.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 17 16:17:32 CET 2012 - tgoettlic...@suse.de
+
+- Fixed selection and sorting in Table widget (bnc#746156) 
+- Version: 2.22.3
+
+---

Old:

  yast2-qt-2.22.2.tar.bz2

New:

  yast2-qt-2.22.3.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.fGGh3U/_old  2012-02-20 16:20:14.0 +0100
+++ /var/tmp/diff_new_pack.fGGh3U/_new  2012-02-20 16:20:14.0 +0100
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.22.2
+Version:2.22.3
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.22.2.tar.bz2
+Source0:yast2-qt-2.22.3.tar.bz2
 Group:  System/YaST
 License:GPL-2.0
 BuildRequires:  docbook-xsl-stylesheets

++ yast2-qt-2.22.2.tar.bz2 -> yast2-qt-2.22.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.2/VERSION.cmake 
new/yast2-qt-2.22.3/VERSION.cmake
--- old/yast2-qt-2.22.2/VERSION.cmake   2012-02-08 14:54:52.0 +0100
+++ new/yast2-qt-2.22.3/VERSION.cmake   2012-02-17 16:18:32.0 +0100
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "2")
 SET(VERSION_MINOR "22")
-SET(VERSION_PATCH "2")
+SET(VERSION_PATCH "3")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.2/package/yast2-qt.changes 
new/yast2-qt-2.22.3/package/yast2-qt.changes
--- old/yast2-qt-2.22.2/package/yast2-qt.changes2012-02-08 
14:54:52.0 +0100
+++ new/yast2-qt-2.22.3/package/yast2-qt.changes2012-02-17 
16:18:32.0 +0100
@@ -1,4 +1,10 @@
 ---
+Fri Feb 17 16:17:32 CET 2012 - tgoettlic...@suse.de
+
+- Fixed selection and sorting in Table widget (bnc#746156) 
+- Version: 2.22.3
+
+---
 Wed Feb  8 14:54:15 CET 2012 - tgoettlic...@suse.de
 
 - Fixed bnc#731540: fixed auto-scroll in LogView
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.2/src/YQTable.cc 
new/yast2-qt-2.22.3/src/YQTable.cc
--- old/yast2-qt-2.22.2/src/YQTable.cc  2012-02-08 14:54:52.0 +0100
+++ new/yast2-qt-2.22.3/src/YQTable.cc  2012-02-17 16:18:32.0 +0100
@@ -95,6 +95,7 @@
 
 _qt_listView->setHeaderLabels( headers );
 _qt_listView->header()->setResizeMode( QHeaderView::Interactive );
+_qt_listView->sortItems( 0, Qt::AscendingOrder);
 
 
 //
@@ -216,8 +217,6 @@
 if ( sel )
YQTable::selectItem( sel, true );
 
-_qt_listView->sortItems( 0, Qt::AscendingOrder);
-
 for ( int i=0; i < columns(); i++ )
_qt_listView->resizeColumnToContents( i );
 }
@@ -297,7 +296,7 @@
 void
 YQTable::slotSelected( QTreeWidgetItem * listViewItem  )
 {
-if ( listViewItem )
+if ( listViewItem && listViewItem->isSelected() )
selectOrigItem( listViewItem );
 else
 {

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-qt for openSUSE:Factory

2012-02-08 Thread h_root
Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory 
checked in at 2012-02-08 17:21:56

Comparing /work/SRC/openSUSE:Factory/yast2-qt (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-qt.new (New)


Package is "yast2-qt", Maintainer is "tgoettlic...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-qt/yast2-qt.changes2011-12-22 
13:19:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-qt.new/yast2-qt.changes   2012-02-08 
17:21:58.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb  8 14:54:15 CET 2012 - tgoettlic...@suse.de
+
+- Fixed bnc#731540: fixed auto-scroll in LogView
+- Version: 2.22.2
+
+---

Old:

  yast2-qt-2.22.1.tar.bz2

New:

  yast2-qt-2.22.2.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.T1regw/_old  2012-02-08 17:21:59.0 +0100
+++ /var/tmp/diff_new_pack.T1regw/_new  2012-02-08 17:21:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-qt
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.22.1
+Version:2.22.2
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.22.1.tar.bz2
+Source0:yast2-qt-2.22.2.tar.bz2
 Group:  System/YaST
 License:GPL-2.0
 BuildRequires:  docbook-xsl-stylesheets

++ yast2-qt-2.22.1.tar.bz2 -> yast2-qt-2.22.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.1/VERSION.cmake 
new/yast2-qt-2.22.2/VERSION.cmake
--- old/yast2-qt-2.22.1/VERSION.cmake   2011-12-20 16:32:18.0 +0100
+++ new/yast2-qt-2.22.2/VERSION.cmake   2012-02-08 14:54:52.0 +0100
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "2")
 SET(VERSION_MINOR "22")
-SET(VERSION_PATCH "1")
+SET(VERSION_PATCH "2")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.1/package/yast2-qt.changes 
new/yast2-qt-2.22.2/package/yast2-qt.changes
--- old/yast2-qt-2.22.1/package/yast2-qt.changes2011-12-20 
16:32:18.0 +0100
+++ new/yast2-qt-2.22.2/package/yast2-qt.changes2012-02-08 
14:54:52.0 +0100
@@ -1,4 +1,10 @@
 ---
+Wed Feb  8 14:54:15 CET 2012 - tgoettlic...@suse.de
+
+- Fixed bnc#731540: fixed auto-scroll in LogView
+- Version: 2.22.2
+
+---
 Tue Dec 20 16:30:28 CET 2011 - tgoettlic...@suse.de
 
 - Confirmed license
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.1/src/YQLogView.cc 
new/yast2-qt-2.22.2/src/YQLogView.cc
--- old/yast2-qt-2.22.1/src/YQLogView.cc2011-12-20 16:32:18.0 
+0100
+++ new/yast2-qt-2.22.2/src/YQLogView.cc2012-02-08 14:54:52.0 
+0100
@@ -73,7 +73,7 @@
 YUI_CHECK_NEW( _caption );
 layout->addWidget( _caption );
 
-_qt_text = new QTextEdit( this );
+_qt_text = new MyTextEdit( this );
 YUI_CHECK_NEW( _qt_text );
 layout->addWidget( _qt_text );
 
@@ -82,6 +82,9 @@
 _qt_text->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, 
QSizePolicy::Expanding ) );
 
 _caption->setBuddy( _qt_text );
+
+connect (_qt_text, SIGNAL(resized()), this, SLOT(slotResize()));
+
 }
 
 
@@ -119,6 +122,7 @@
 {
 _qt_text->moveCursor( QTextCursor::End );
 _qt_text->ensureCursorVisible();
+  sb->setValue( sb->maximum() );
 }
 
 _lastText = newString;
@@ -163,6 +167,20 @@
 return max( 80, hintHeight );
 }
 
+void
+YQLogView::slotResize()
+{
+QScrollBar *sb = _qt_text->verticalScrollBar();
+
+bool atEnd = sb->value() == sb->maximum();
+
+if (atEnd)
+{
+_qt_text->moveCursor( QTextCursor::End );
+_qt_text->ensureCursorVisible();
+sb->setValue( sb->maximum() );
+}
+}
 
 void
 YQLogView::setSize( int newWidth, int newHeight )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.22.1/src/YQLogView.h 
new/yast2-qt-2.22.2/src/YQLogView.h
--- old/yast2-qt-2.22.1/src/YQLogView.h 2011-12-20 16:32:18.0 +0100
+++ new/yast2-qt-2.22.2/src/YQLogView.h 2012-02-08 14:54:52.0 +0100
@@ -49,6 +49,8 @@
 #include "YLogView.h"
 
 class YQWidgetCaption;
+class MyTextEdit;
+
 
 
 class YQLogVie

commit yast2-qt for openSUSE:Factory

2011-12-22 Thread h_root
Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory 
checked in at 2011-12-22 13:19:33

Comparing /work/SRC/openSUSE:Factory/yast2-qt (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-qt.new (New)


Package is "yast2-qt", Maintainer is "tgoettlic...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-qt/yast2-qt.changes2011-12-07 
21:41:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-qt.new/yast2-qt.changes   2011-12-22 
13:19:35.0 +0100
@@ -1,0 +2,6 @@
+Tue Dec 20 16:30:28 CET 2011 - tgoettlic...@suse.de
+
+- Confirmed license
+- V 2.22.1
+
+---

Old:

  yast2-qt-2.22.0.tar.bz2

New:

  yast2-qt-2.22.1.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.HwV5iq/_old  2011-12-22 13:19:36.0 +0100
+++ /var/tmp/diff_new_pack.HwV5iq/_new  2011-12-22 13:19:36.0 +0100
@@ -18,13 +18,13 @@
 
 
 Name:   yast2-qt
-Version:2.22.0
+Version:2.22.1
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.22.0.tar.bz2
+Source0:yast2-qt-2.22.1.tar.bz2
 Group:  System/YaST
-License:GPL-2.0+
+License:GPL-2.0
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  doxygen
 BuildRequires:  libdrm-devel
@@ -102,6 +102,7 @@
 %dir %_libdir/YaST2
 %_libdir/YaST2/plugin/
 %_prefix/share/YaST2/data/lang_fonts
+%doc COPYING.GPL2
 
 %files devel
 %defattr (-, root, root)

++ yast2-qt-2.22.0.tar.bz2 -> yast2-qt-2.22.1.tar.bz2 ++
 6559 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-qt for openSUSE:Factory

2011-12-07 Thread h_root
Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory 
checked in at 2011-12-07 21:41:17

Comparing /work/SRC/openSUSE:Factory/yast2-qt (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-qt.new (New)


Package is "yast2-qt", Maintainer is "tgoettlic...@suse.com"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-qt/yast2-qt.changes2011-10-04 
18:02:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-qt.new/yast2-qt.changes   2011-12-07 
21:41:27.0 +0100
@@ -1,0 +2,6 @@
+Thu Dec  1 17:46:33 CET 2011 - tgoettlic...@suse.de
+
+- Follow links to anchors in YQTextBrowser (bnc #727330)
+- V 2.22.0
+
+---

Old:

  yast2-qt-2.21.7.tar.bz2

New:

  yast2-qt-2.22.0.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.5EnyJm/_old  2011-12-07 21:41:29.0 +0100
+++ /var/tmp/diff_new_pack.5EnyJm/_new  2011-12-07 21:41:29.0 +0100
@@ -18,13 +18,13 @@
 
 
 Name:   yast2-qt
-Version:2.21.7
+Version:2.22.0
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.21.7.tar.bz2
+Source0:yast2-qt-2.22.0.tar.bz2
 Group:  System/YaST
-License:GPL v2 or later
+License:GPL-2.0+
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  doxygen
 BuildRequires:  libdrm-devel

++ yast2-qt-2.21.7.tar.bz2 -> yast2-qt-2.22.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.7/VERSION.cmake 
new/yast2-qt-2.22.0/VERSION.cmake
--- old/yast2-qt-2.21.7/VERSION.cmake   2011-10-04 10:32:24.0 +0200
+++ new/yast2-qt-2.22.0/VERSION.cmake   2011-12-01 17:50:01.0 +0100
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "2")
-SET(VERSION_MINOR "21")
-SET(VERSION_PATCH "7")
+SET(VERSION_MINOR "22")
+SET(VERSION_PATCH "0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.7/package/yast2-qt.changes 
new/yast2-qt-2.22.0/package/yast2-qt.changes
--- old/yast2-qt-2.21.7/package/yast2-qt.changes2011-10-04 
10:32:24.0 +0200
+++ new/yast2-qt-2.22.0/package/yast2-qt.changes2011-12-01 
17:50:01.0 +0100
@@ -1,4 +1,10 @@
 ---
+Thu Dec  1 17:46:33 CET 2011 - tgoettlic...@suse.de
+
+- Follow links to anchors in YQTextBrowser (bnc #727330)
+- V 2.22.0
+
+---
 Tue Oct  4 10:25:15 CEST 2011 - tgoettlic...@suse.de
 
 - Don't overwrite wizard's dialog title
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.7/src/YQRichText.cc 
new/yast2-qt-2.22.0/src/YQRichText.cc
--- old/yast2-qt-2.21.7/src/YQRichText.cc   2011-10-04 10:32:24.0 
+0200
+++ new/yast2-qt-2.22.0/src/YQRichText.cc   2011-12-01 17:50:01.0 
+0100
@@ -235,6 +235,16 @@
 return true;
 }
 
+void YQTextBrowser::setSource( const QUrl & name )
+{
+// scroll to link if it's available in the current document
+// but prevent loading empty pages
+
+if ( name.toString().startsWith("#") )
+   scrollToAnchor( name.toString().mid(1) );
+
+}
+
 
 
 #include "YQRichText.moc"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.7/src/YQRichText.h 
new/yast2-qt-2.22.0/src/YQRichText.h
--- old/yast2-qt-2.21.7/src/YQRichText.h2011-10-04 10:32:24.0 
+0200
+++ new/yast2-qt-2.22.0/src/YQRichText.h2011-12-01 17:50:01.0 
+0100
@@ -189,7 +189,7 @@
  * Reimplemented from QTextBrowser to avoid having an empty text each time
  * the user clicks on a hyperlink.
  **/
-virtual void setSource( const QUrl & name ) {}
+virtual void setSource( const QUrl & name );
 };
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.7/yast2-qt.spec.in 
new/yast2-qt-2.22.0/yast2-qt.spec.in
--- old/yast2-qt-2.21.7/yast2-qt.spec.in2011-10-04 10:32:24.0 
+0200
+++ new/yast2-qt-2.22.0/yast2-qt.spec.in2011-12-01 17:50:01.0 
+0100
@@ -3,7 +3,7 @@
 
 @HEADER@
 Group: System/YaST
-License: GPL v2 or later
+License: GPL-2.0+
 BuildRequires: docbook-xsl-stylesheets 
 BuildRequires: doxygen 
 BuildRequires: libdrm-devel 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-qt for openSUSE:Factory

2011-10-04 Thread h_root

Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory
checked in at Tue Oct 4 18:02:29 CEST 2011.




--- openSUSE:Factory/yast2-qt/yast2-qt.changes  2011-09-26 10:23:23.0 
+0200
+++ /mounts/work_src_done/STABLE/yast2-qt/yast2-qt.changes  2011-10-04 
10:32:47.0 +0200
@@ -1,0 +2,6 @@
+Tue Oct  4 10:25:15 CEST 2011 - tgoettlic...@suse.de
+
+- Don't overwrite wizard's dialog title
+- V 2.21.7
+
+---

calling whatdependson for head-i586


Old:

  yast2-qt-2.21.6.tar.bz2

New:

  yast2-qt-2.21.7.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.gEn2EP/_old  2011-10-04 18:02:26.0 +0200
+++ /var/tmp/diff_new_pack.gEn2EP/_new  2011-10-04 18:02:26.0 +0200
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.21.6
+Version:2.21.7
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.21.6.tar.bz2
+Source0:yast2-qt-2.21.7.tar.bz2
 Group:  System/YaST
 License:GPL v2 or later
 BuildRequires:  docbook-xsl-stylesheets

++ yast2-qt-2.21.6.tar.bz2 -> yast2-qt-2.21.7.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.6/VERSION.cmake 
new/yast2-qt-2.21.7/VERSION.cmake
--- old/yast2-qt-2.21.6/VERSION.cmake   2011-09-23 12:06:10.0 +0200
+++ new/yast2-qt-2.21.7/VERSION.cmake   2011-10-04 10:32:24.0 +0200
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "2")
 SET(VERSION_MINOR "21")
-SET(VERSION_PATCH "6")
+SET(VERSION_PATCH "7")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.6/package/yast2-qt.changes 
new/yast2-qt-2.21.7/package/yast2-qt.changes
--- old/yast2-qt-2.21.6/package/yast2-qt.changes2011-09-23 
12:06:10.0 +0200
+++ new/yast2-qt-2.21.7/package/yast2-qt.changes2011-10-04 
10:32:24.0 +0200
@@ -1,4 +1,10 @@
 ---
+Tue Oct  4 10:25:15 CEST 2011 - tgoettlic...@suse.de
+
+- Don't overwrite wizard's dialog title
+- V 2.21.7
+
+---
 Fri Sep 23 11:19:57 CEST 2011 - tgoettlic...@suse.de
 
 - removed unversioned Provides/Obsoletes from spec file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.6/src/YQWizard.cc 
new/yast2-qt-2.21.7/src/YQWizard.cc
--- old/yast2-qt-2.21.6/src/YQWizard.cc 2011-09-23 12:06:10.0 +0200
+++ new/yast2-qt-2.21.7/src/YQWizard.cc 2011-10-04 10:32:24.0 +0200
@@ -158,7 +158,9 @@
 
 //layoutTitleBar( this );
 
-topLevelWidget()->setWindowTitle( YQUI::ui()->applicationTitle() );
+if( topLevelWidget()->windowTitle().isEmpty() )
+   topLevelWidget()->setWindowTitle( YQUI::ui()->applicationTitle() );
+
 
 layout->addLayout( layoutSideBar( this ) );
 layout->addWidget( layoutWorkArea( this ) );

continue with "q"...



Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-qt for openSUSE:Factory

2011-09-26 Thread h_root

Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory
checked in at Mon Sep 26 10:23:27 CEST 2011.




--- yast2-qt/yast2-qt.changes   2011-09-22 16:14:50.0 +0200
+++ /mounts/work_src_done/STABLE/yast2-qt/yast2-qt.changes  2011-09-23 
11:21:11.0 +0200
@@ -1,0 +2,6 @@
+Fri Sep 23 11:19:57 CEST 2011 - tgoettlic...@suse.de
+
+- removed unversioned Provides/Obsoletes from spec file
+- V 2.21.6
+
+---

calling whatdependson for head-i586


Old:

  yast2-qt-2.21.5.tar.bz2

New:

  yast2-qt-2.21.6.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.9dLCVy/_old  2011-09-26 10:23:21.0 +0200
+++ /var/tmp/diff_new_pack.9dLCVy/_new  2011-09-26 10:23:21.0 +0200
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.21.5
+Version:2.21.6
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.21.5.tar.bz2
+Source0:yast2-qt-2.21.6.tar.bz2
 Group:  System/YaST
 License:GPL v2 or later
 BuildRequires:  docbook-xsl-stylesheets
@@ -49,8 +49,6 @@
 Provides:   yast2_ui
 Provides:   y2base:/usr/lib/YaST2/servers/qt
 Provides:   y2base:/usr/lib/YaST2/plugin/libpy2qt.so.2
-Provides:   yast2-ui-qt yast2-ui-qt-devel
-Obsoletes:  yast2-ui-qt yast2-ui-qt-devel
 Recommends: yast2-qt-pkg
 Recommends: xorg-x11-fonts
 

++ yast2-qt-2.21.5.tar.bz2 -> yast2-qt-2.21.6.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.5/VERSION.cmake 
new/yast2-qt-2.21.6/VERSION.cmake
--- old/yast2-qt-2.21.5/VERSION.cmake   2011-09-20 14:47:06.0 +0200
+++ new/yast2-qt-2.21.6/VERSION.cmake   2011-09-23 12:06:10.0 +0200
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "2")
 SET(VERSION_MINOR "21")
-SET(VERSION_PATCH "5")
+SET(VERSION_PATCH "6")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.5/package/yast2-qt.changes 
new/yast2-qt-2.21.6/package/yast2-qt.changes
--- old/yast2-qt-2.21.5/package/yast2-qt.changes2011-09-20 
14:47:06.0 +0200
+++ new/yast2-qt-2.21.6/package/yast2-qt.changes2011-09-23 
12:06:10.0 +0200
@@ -1,4 +1,15 @@
 ---
+Fri Sep 23 11:19:57 CEST 2011 - tgoettlic...@suse.de
+
+- removed unversioned Provides/Obsoletes from spec file
+- V 2.21.6
+
+---
+Thu Sep 22 14:11:45 UTC 2011 - co...@suse.com
+
+- require yast2-qt-branding
+
+---
 Tue Sep 20 14:46:27 CEST 2011 - tgoettlic...@suse.de
 
 - respect stylesheets in dialogs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.5/yast2-qt.spec.in 
new/yast2-qt-2.21.6/yast2-qt.spec.in
--- old/yast2-qt-2.21.5/yast2-qt.spec.in2011-09-20 14:47:06.0 
+0200
+++ new/yast2-qt-2.21.6/yast2-qt.spec.in2011-09-23 12:06:10.0 
+0200
@@ -24,13 +24,10 @@
 Requires:   yast2-libyui  >= 2.21.1
 Requires:   yast2_theme >= 2.16.1
 Requires:   yast2-branding
+Requires:   yast2-qt-branding
 Provides:  yast2_ui
 Provides:  y2base:/usr/lib/YaST2/servers/qt
 Provides:  y2base:/usr/lib/YaST2/plugin/libpy2qt.so.2
-Provides:  yast2-ui-qt yast2-ui-qt-devel
-Obsoletes: yast2-ui-qt yast2-ui-qt-devel
-Provides:  y2qt
-Obsoletes: y2qt
 Recommends:yast2-qt-pkg
 Recommends:xorg-x11-fonts
 
@@ -69,7 +66,7 @@
   -DCMAKE_BUILD_TYPE=Release \
   -DCMAKE_SKIP_RPATH=1 \
   ..
-make %{?jobs:-j %jobs} VERBOSE=1
+make %{?_smp_mflags} VERBOSE=1
 
 %install
 cd build






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-qt for openSUSE:Factory

2011-09-23 Thread h_root

Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory
checked in at Fri Sep 23 10:38:30 CEST 2011.




--- yast2-qt/yast2-qt.changes   2011-05-18 17:05:50.0 +0200
+++ /mounts/work_src_done/STABLE/yast2-qt/yast2-qt.changes  2011-09-22 
16:14:50.0 +0200
@@ -1,0 +2,11 @@
+Thu Sep 22 14:11:45 UTC 2011 - co...@suse.com
+
+- require yast2-qt-branding
+
+---
+Tue Sep 20 14:46:27 CEST 2011 - tgoettlic...@suse.de
+
+- respect stylesheets in dialogs
+- V 2.21.5
+
+---

calling whatdependson for head-i586


Old:

  yast2-qt-2.21.4.tar.bz2

New:

  yast2-qt-2.21.5.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.1XVexF/_old  2011-09-23 10:38:24.0 +0200
+++ /var/tmp/diff_new_pack.1XVexF/_new  2011-09-23 10:38:24.0 +0200
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.21.4
-Release:1
+Version:2.21.5
+Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.21.4.tar.bz2
+Source0:yast2-qt-2.21.5.tar.bz2
 Group:  System/YaST
 License:GPL v2 or later
 BuildRequires:  docbook-xsl-stylesheets
@@ -45,13 +45,12 @@
 Requires:   yast2-libyui  >= 2.21.1
 Requires:   yast2_theme >= 2.16.1
 Requires:   yast2-branding
+Requires:   yast2-qt-branding
 Provides:   yast2_ui
 Provides:   y2base:/usr/lib/YaST2/servers/qt
 Provides:   y2base:/usr/lib/YaST2/plugin/libpy2qt.so.2
 Provides:   yast2-ui-qt yast2-ui-qt-devel
 Obsoletes:  yast2-ui-qt yast2-ui-qt-devel
-Provides:   y2qt
-Obsoletes:  y2qt
 Recommends: yast2-qt-pkg
 Recommends: xorg-x11-fonts
 
@@ -60,7 +59,6 @@
 X Window System.
 
 %package devel
-
 Summary:Development package for graphical YaST2 user interfaces
 Group:  Development/Libraries/YaST
 Requires:   yast2-qt = %{version}
@@ -91,7 +89,7 @@
   -DCMAKE_BUILD_TYPE=Release \
   -DCMAKE_SKIP_RPATH=1 \
   ..
-make %{?jobs:-j %jobs} VERBOSE=1
+make %{?_smp_mflags} VERBOSE=1
 
 %install
 cd build

++ yast2-qt-2.21.4.tar.bz2 -> yast2-qt-2.21.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.4/VERSION.cmake 
new/yast2-qt-2.21.5/VERSION.cmake
--- old/yast2-qt-2.21.4/VERSION.cmake   2011-05-18 17:05:33.0 +0200
+++ new/yast2-qt-2.21.5/VERSION.cmake   2011-09-20 14:47:06.0 +0200
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "2")
 SET(VERSION_MINOR "21")
-SET(VERSION_PATCH "4")
+SET(VERSION_PATCH "5")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.4/package/yast2-qt.changes 
new/yast2-qt-2.21.5/package/yast2-qt.changes
--- old/yast2-qt-2.21.4/package/yast2-qt.changes2011-05-18 
17:05:33.0 +0200
+++ new/yast2-qt-2.21.5/package/yast2-qt.changes2011-09-20 
14:47:06.0 +0200
@@ -1,4 +1,10 @@
 ---
+Tue Sep 20 14:46:27 CEST 2011 - tgoettlic...@suse.de
+
+- respect stylesheets in dialogs
+- V 2.21.5
+
+---
 Wed May 18 17:04:43 CEST 2011 - tgoettlic...@suse.de
 
 - Fixed selection in tree widgets (bnc #680107)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.4/src/QY2HelpDialog.cc 
new/yast2-qt-2.21.5/src/QY2HelpDialog.cc
--- old/yast2-qt-2.21.4/src/QY2HelpDialog.cc2011-05-18 17:05:33.0 
+0200
+++ new/yast2-qt-2.21.5/src/QY2HelpDialog.cc2011-09-20 14:47:06.0 
+0200
@@ -44,6 +44,8 @@
 #include 
 #include "YQi18n.h"
 #include "YQUI.h"
+#include "QY2Styler.h"
+
 
 #include "icons/viewmag.xpm"
 
@@ -75,6 +77,8 @@
 
 // Close button for wizard help window
 _ui->pushButton->setText( _( "&Close" ) );
+
+QY2Styler::styler()->registerWidget( this );
 }
 
 void QY2HelpDialog::setHelpText( const QString& helpText )
@@ -86,6 +90,7 @@
 
 QY2HelpDialog::~QY2HelpDialog()
 {
+QY2Styler::styler()->unregisterWidget( this );
 delete _ui;
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.4/src/YQDialog.cc 
new/yast2-qt-2.21.5/src/YQDialog.cc
--- old/yast2-qt-2.21.4/src/YQDialog.cc 2011-05-18 17:05:33.0 +0200
+++ new/yast2-qt-2.21.5/src/YQDialog.cc 2011-09-20 14:47:06.0 +0200
@@ -129,6 +129,8 @@
 
 QObject::connect( _waitForEventTimer,  SIGNAL( timeout()  
),
  this, SLOT  ( waitForEventTimeout() ) 
);
+
+QY2Styler::styler()->registerWidget( this );
 }
 
 
@@ -148,6 +150,8 @@
 
 if ( _style

commit yast2-qt for openSUSE:Factory

2011-05-19 Thread h_root

Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory
checked in at Thu May 19 09:36:10 CEST 2011.




--- yast2-qt/yast2-qt.changes   2011-04-28 14:55:17.0 +0200
+++ /mounts/work_src_done/STABLE/yast2-qt/yast2-qt.changes  2011-05-18 
17:05:50.0 +0200
@@ -1,0 +2,6 @@
+Wed May 18 17:04:43 CEST 2011 - tgoettlic...@suse.de
+
+- Fixed selection in tree widgets (bnc #680107)
+- V 2.21.4
+
+---

calling whatdependson for head-i586


Old:

  yast2-qt-2.21.3.tar.bz2

New:

  yast2-qt-2.21.4.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.kWfQEV/_old  2011-05-19 09:35:44.0 +0200
+++ /var/tmp/diff_new_pack.kWfQEV/_new  2011-05-19 09:35:44.0 +0200
@@ -18,13 +18,13 @@
 
 
 Name:   yast2-qt
-Version:2.21.3
+Version:2.21.4
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.21.3.tar.bz2
+Source0:yast2-qt-2.21.4.tar.bz2
 Group:  System/YaST
-License:GPLv2+
+License:GPL v2 or later
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  doxygen
 BuildRequires:  libdrm-devel
@@ -60,7 +60,7 @@
 X Window System.
 
 %package devel
-License:GPLv2+
+
 Summary:Development package for graphical YaST2 user interfaces
 Group:  Development/Libraries/YaST
 Requires:   yast2-qt = %{version}

++ yast2-qt-2.21.3.tar.bz2 -> yast2-qt-2.21.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.3/VERSION.cmake 
new/yast2-qt-2.21.4/VERSION.cmake
--- old/yast2-qt-2.21.3/VERSION.cmake   2011-04-28 14:55:03.0 +0200
+++ new/yast2-qt-2.21.4/VERSION.cmake   2011-05-18 17:05:33.0 +0200
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "2")
 SET(VERSION_MINOR "21")
-SET(VERSION_PATCH "3")
+SET(VERSION_PATCH "4")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.3/package/yast2-qt.changes 
new/yast2-qt-2.21.4/package/yast2-qt.changes
--- old/yast2-qt-2.21.3/package/yast2-qt.changes2011-04-28 
14:55:03.0 +0200
+++ new/yast2-qt-2.21.4/package/yast2-qt.changes2011-05-18 
17:05:33.0 +0200
@@ -1,4 +1,10 @@
 ---
+Wed May 18 17:04:43 CEST 2011 - tgoettlic...@suse.de
+
+- Fixed selection in tree widgets (bnc #680107)
+- V 2.21.4
+
+---
 Thu Apr 28 14:54:04 CEST 2011 - tgoettlic...@suse.de
 
 - Enable shadow for wizard title
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.3/src/YQTree.cc 
new/yast2-qt-2.21.4/src/YQTree.cc
--- old/yast2-qt-2.21.3/src/YQTree.cc   2011-04-28 14:55:03.0 +0200
+++ new/yast2-qt-2.21.4/src/YQTree.cc   2011-05-18 17:05:33.0 +0200
@@ -355,6 +355,14 @@
 
 void YQTree::slotSelectionChanged( )
 {
+QList items = _qt_treeWidget->selectedItems ();
+
+if ( ! hasMultiSelection() && ! items.empty() )
+{
+QTreeWidgetItem *qItem = items.first();
+selectItem( dynamic_cast (qItem) );
+}
+
 
 if ( notify() && ! YQUI::ui()->eventPendingFor( this ) )
YQUI::ui()->sendEvent( new YWidgetEvent( this, YEvent::SelectionChanged 
) );
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.3/src/YQTree.cc_backup 
new/yast2-qt-2.21.4/src/YQTree.cc_backup
--- old/yast2-qt-2.21.3/src/YQTree.cc_backup1970-01-01 01:00:00.0 
+0100
+++ new/yast2-qt-2.21.4/src/YQTree.cc_backup2011-05-18 17:05:33.0 
+0200
@@ -0,0 +1,520 @@
+/**
+Copyright (C) 2000 - 2010 Novell, Inc.
+All Rights Reserved.
+
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along
+with this program; if not, write to the Free Software Foundation, Inc.,
+51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+**/
+
+
+/*-\
+| |
+|

commit yast2-qt for openSUSE:Factory

2011-04-29 Thread h_root

Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory
checked in at Fri Apr 29 12:39:32 CEST 2011.




--- yast2-qt/yast2-qt.changes   2011-04-21 11:08:11.0 +0200
+++ /mounts/work_src_done/STABLE/yast2-qt/yast2-qt.changes  2011-04-28 
14:55:17.0 +0200
@@ -1,0 +2,6 @@
+Thu Apr 28 14:54:04 CEST 2011 - tgoettlic...@suse.de
+
+- Enable shadow for wizard title
+- V 2.21.3
+
+---

calling whatdependson for head-i586


Old:

  yast2-qt-2.21.2.tar.bz2

New:

  yast2-qt-2.21.3.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.UCI4AN/_old  2011-04-29 12:39:00.0 +0200
+++ /var/tmp/diff_new_pack.UCI4AN/_new  2011-04-29 12:39:00.0 +0200
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.21.2
+Version:2.21.3
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.21.2.tar.bz2
+Source0:yast2-qt-2.21.3.tar.bz2
 Group:  System/YaST
 License:GPLv2+
 BuildRequires:  docbook-xsl-stylesheets

++ yast2-qt-2.21.2.tar.bz2 -> yast2-qt-2.21.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.2/VERSION.cmake 
new/yast2-qt-2.21.3/VERSION.cmake
--- old/yast2-qt-2.21.2/VERSION.cmake   2011-04-21 15:32:06.0 +0200
+++ new/yast2-qt-2.21.3/VERSION.cmake   2011-04-28 14:55:03.0 +0200
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "2")
 SET(VERSION_MINOR "21")
-SET(VERSION_PATCH "2")
+SET(VERSION_PATCH "3")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.2/package/yast2-qt.changes 
new/yast2-qt-2.21.3/package/yast2-qt.changes
--- old/yast2-qt-2.21.2/package/yast2-qt.changes2011-04-21 
15:32:06.0 +0200
+++ new/yast2-qt-2.21.3/package/yast2-qt.changes2011-04-28 
14:55:03.0 +0200
@@ -1,4 +1,10 @@
 ---
+Thu Apr 28 14:54:04 CEST 2011 - tgoettlic...@suse.de
+
+- Enable shadow for wizard title
+- V 2.21.3
+
+---
 Thu Apr 21 11:05:49 CEST 2011 - tgoettlic...@suse.de
 
 - Cleaned-up fix for line breaks in LogView (bnc #684759)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.2/src/YQWizard.cc 
new/yast2-qt-2.21.3/src/YQWizard.cc
--- old/yast2-qt-2.21.2/src/YQWizard.cc 2011-04-21 15:32:06.0 +0200
+++ new/yast2-qt-2.21.3/src/YQWizard.cc 2011-04-28 14:55:03.0 +0200
@@ -96,7 +96,7 @@
 
 #define USE_ICON_ON_HELP_BUTTON0
 
-//#define SHADOW_WORKAROUND1
+#define SHADOW_WORKAROUND  1
 
 YQWizard *YQWizard::main_wizard = 0;
 






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-qt for openSUSE:Factory

2011-04-27 Thread h_root

Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory
checked in at Wed Apr 27 11:28:01 CEST 2011.




--- yast2-qt/yast2-qt.changes   2011-04-18 16:28:55.0 +0200
+++ /mounts/work_src_done/STABLE/yast2-qt/yast2-qt.changes  2011-04-21 
11:08:11.0 +0200
@@ -1,0 +2,6 @@
+Thu Apr 21 11:05:49 CEST 2011 - tgoettlic...@suse.de
+
+- Cleaned-up fix for line breaks in LogView (bnc #684759)
+- V 2.21.2
+
+---

calling whatdependson for head-i586


Old:

  yast2-qt-2.21.1.tar.bz2

New:

  yast2-qt-2.21.2.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.QoBjZd/_old  2011-04-27 11:25:41.0 +0200
+++ /var/tmp/diff_new_pack.QoBjZd/_new  2011-04-27 11:25:41.0 +0200
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.21.1
+Version:2.21.2
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.21.1.tar.bz2
+Source0:yast2-qt-2.21.2.tar.bz2
 Group:  System/YaST
 License:GPLv2+
 BuildRequires:  docbook-xsl-stylesheets

++ yast2-qt-2.21.1.tar.bz2 -> yast2-qt-2.21.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.1/VERSION.cmake 
new/yast2-qt-2.21.2/VERSION.cmake
--- old/yast2-qt-2.21.1/VERSION.cmake   2011-04-19 12:21:08.0 +0200
+++ new/yast2-qt-2.21.2/VERSION.cmake   2011-04-21 15:32:06.0 +0200
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "2")
 SET(VERSION_MINOR "21")
-SET(VERSION_PATCH "1")
+SET(VERSION_PATCH "2")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.1/package/yast2-qt.changes 
new/yast2-qt-2.21.2/package/yast2-qt.changes
--- old/yast2-qt-2.21.1/package/yast2-qt.changes2011-04-19 
12:21:09.0 +0200
+++ new/yast2-qt-2.21.2/package/yast2-qt.changes2011-04-21 
15:32:06.0 +0200
@@ -1,4 +1,10 @@
 ---
+Thu Apr 21 11:05:49 CEST 2011 - tgoettlic...@suse.de
+
+- Cleaned-up fix for line breaks in LogView (bnc #684759)
+- V 2.21.2
+
+---
 Mon Apr 18 16:16:59 CEST 2011 - tgoettlic...@suse.de
 
 - Enable busy cursor for tree widget during time consuming 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.21.1/src/YQLogView.cc 
new/yast2-qt-2.21.2/src/YQLogView.cc
--- old/yast2-qt-2.21.1/src/YQLogView.cc2011-04-19 12:21:08.0 
+0200
+++ new/yast2-qt-2.21.2/src/YQLogView.cc2011-04-21 15:32:06.0 
+0200
@@ -93,22 +93,32 @@
 YQLogView::displayLogText( const string & text )
 {
 QScrollBar *sb = _qt_text->verticalScrollBar();
-
 QString newString = fromUTF8( text );
-newString[ newString.length() ] = ' ';
 
 bool atEnd = sb->value() == sb->maximum();
 
-if (newString.startsWith(_lastText) && !_lastText.isEmpty() ) {
-_qt_text->append(newString.mid(_lastText.length() + 1 ));
-} else {
+if (newString.startsWith(_lastText) && !_lastText.isEmpty() ) 
+{
+   int position = _lastText.length();
+
+   // prevent double line break caused by QTextEdit::append()
+   if ( newString.mid( _lastText.length(), 1 ) == QString('\n') )
+   position++;
+
+_qt_text->append( newString.mid( position) );
+}
+else
+{
 _qt_text->setPlainText( newString );
 }
 
-if (atEnd) {
+
+if (atEnd)
+{
 _qt_text->moveCursor( QTextCursor::End );
 _qt_text->ensureCursorVisible();
 }
+
 _lastText = newString;
 }
 






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit yast2-qt for openSUSE:Factory

2011-04-20 Thread h_root

Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory
checked in at Wed Apr 20 13:54:21 CEST 2011.




--- yast2-qt/yast2-qt.changes   2011-04-12 16:36:51.0 +0200
+++ /mounts/work_src_done/STABLE/yast2-qt/yast2-qt.changes  2011-04-18 
16:28:55.0 +0200
@@ -1,0 +2,13 @@
+Mon Apr 18 16:16:59 CEST 2011 - tgoettlic...@suse.de
+
+- Enable busy cursor for tree widget during time consuming 
+  operations
+- V 2.21.1
+
+---
+Fri Apr 15 16:20:11 CEST 2011 - tgoettlic...@suse.de
+
+- Added support for recursive selection in tree widgets
+- V 2.20.8
+
+---

calling whatdependson for head-i586


Old:

  yast2-qt-2.20.7.tar.bz2

New:

  yast2-qt-2.21.1.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.E66zxe/_old  2011-04-20 13:54:07.0 +0200
+++ /var/tmp/diff_new_pack.E66zxe/_new  2011-04-20 13:54:07.0 +0200
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.20.7
+Version:2.21.1
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.20.7.tar.bz2
+Source0:yast2-qt-2.21.1.tar.bz2
 Group:  System/YaST
 License:GPLv2+
 BuildRequires:  docbook-xsl-stylesheets
@@ -41,8 +41,8 @@
 Summary:YaST2 - Graphical User Interface
 BuildRequires:  yast2-devtools >= 2.16.3
 #YIconLoader
-BuildRequires:  yast2-libyui-devel >= 2.20.2
-Requires:   yast2-libyui  >= 2.20.2
+BuildRequires:  yast2-libyui-devel >= 2.21.1
+Requires:   yast2-libyui  >= 2.21.1
 Requires:   yast2_theme >= 2.16.1
 Requires:   yast2-branding
 Provides:   yast2_ui

++ yast2-qt-2.20.7.tar.bz2 -> yast2-qt-2.21.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.20.7/VERSION.cmake 
new/yast2-qt-2.21.1/VERSION.cmake
--- old/yast2-qt-2.20.7/VERSION.cmake   2011-04-12 16:36:29.0 +0200
+++ new/yast2-qt-2.21.1/VERSION.cmake   2011-04-19 12:21:08.0 +0200
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "2")
-SET(VERSION_MINOR "20")
-SET(VERSION_PATCH "7")
+SET(VERSION_MINOR "21")
+SET(VERSION_PATCH "1")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.20.7/package/yast2-qt.changes 
new/yast2-qt-2.21.1/package/yast2-qt.changes
--- old/yast2-qt-2.20.7/package/yast2-qt.changes2011-04-12 
16:36:30.0 +0200
+++ new/yast2-qt-2.21.1/package/yast2-qt.changes2011-04-19 
12:21:09.0 +0200
@@ -1,4 +1,17 @@
 ---
+Mon Apr 18 16:16:59 CEST 2011 - tgoettlic...@suse.de
+
+- Enable busy cursor for tree widget during time consuming 
+  operations
+- V 2.21.1
+
+---
+Fri Apr 15 16:20:11 CEST 2011 - tgoettlic...@suse.de
+
+- Added support for recursive selection in tree widgets
+- V 2.20.8
+
+---
 Tue Apr 12 16:33:56 CEST 2011 - tgoettlic...@suse.de
 
 - Fixed line breaks in LogView (bnc #684759)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.20.7/src/YQTree.cc 
new/yast2-qt-2.21.1/src/YQTree.cc
--- old/yast2-qt-2.20.7/src/YQTree.cc   2011-04-12 16:36:29.0 +0200
+++ new/yast2-qt-2.21.1/src/YQTree.cc   2011-04-19 12:21:08.0 +0200
@@ -63,9 +63,9 @@
 #define VERBOSE_TREE_ITEMS 0
 
 
-YQTree::YQTree( YWidget * parent, const string & label, bool 
multiSelectionMode  )
+YQTree::YQTree( YWidget * parent, const string & label, bool 
multiSelectionMode, bool recursiveSelectionMode  )
 : QFrame( (QWidget *) parent->widgetRep() )
-, YTree( parent, label, multiSelectionMode )
+, YTree( parent, label, multiSelectionMode, recursiveSelectionMode )
 {
 QVBoxLayout* layout = new QVBoxLayout( this );
 setLayout( layout );
@@ -101,8 +101,11 @@
 connect( _qt_treeWidget,   SIGNAL( itemClicked ( QTreeWidgetItem *, int ) 
),
 this,  SLOT  ( slotItemClicked ( QTreeWidgetItem *, 
int ) ) );
 
+//connect( _qt_treeWidget, SIGNAL( itemChanged ( QTreeWidgetItem *, int ) 
),
+//  this,  SLOT  ( slotItemChanged () ) );
+
 connect( _qt_treeWidget,   SIGNAL( itemChanged ( QTreeWidgetItem *, int ) 
),
-this,  SLOT  ( slotItemChanged () ) );
+this,  SLOT  ( slotItemChanged (QTreeWidgetItem *) ) );
 
 connect( _qt_treeWidget,   SIGNAL( itemDoubleClicked( QTreeWidgetItem *, 
int ) ),
 this,  SLOT  ( slotActivated( QTreeWidgetItem *
  ) ) );
@@ -276,24 +279,48 @@
 }
 
 
-void YQTree::sl

commit yast2-qt for openSUSE:Factory

2011-04-14 Thread h_root

Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory
checked in at Thu Apr 14 09:09:00 CEST 2011.




--- yast2-qt/yast2-qt.changes   2011-02-21 17:34:06.0 +0100
+++ /mounts/work_src_done/STABLE/yast2-qt/yast2-qt.changes  2011-04-12 
16:36:51.0 +0200
@@ -1,0 +2,18 @@
+Tue Apr 12 16:33:56 CEST 2011 - tgoettlic...@suse.de
+
+- Fixed line breaks in LogView (bnc #684759)
+- V 2.20.7
+
+---
+Wed Mar 16 10:48:50 CET 2011 - tgoettlic...@suse.de
+
+- Fixed dependencies (bnc #667938)
+- V 2.20.6
+
+---
+Tue Mar  8 16:19:49 CET 2011 - tgoettlic...@suse.de
+
+- Show block devices in file selection dialog (bnc #661685)
+- V 2.20.5
+
+---

calling whatdependson for head-i586


Old:

  yast2-qt-2.20.4.tar.bz2

New:

  yast2-qt-2.20.7.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.iNpMFl/_old  2011-04-14 09:08:34.0 +0200
+++ /var/tmp/diff_new_pack.iNpMFl/_new  2011-04-14 09:08:34.0 +0200
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.20.4
+Version:2.20.7
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.20.4.tar.bz2
+Source0:yast2-qt-2.20.7.tar.bz2
 Group:  System/YaST
 License:GPLv2+
 BuildRequires:  docbook-xsl-stylesheets
@@ -44,6 +44,7 @@
 BuildRequires:  yast2-libyui-devel >= 2.20.2
 Requires:   yast2-libyui  >= 2.20.2
 Requires:   yast2_theme >= 2.16.1
+Requires:   yast2-branding
 Provides:   yast2_ui
 Provides:   y2base:/usr/lib/YaST2/servers/qt
 Provides:   y2base:/usr/lib/YaST2/plugin/libpy2qt.so.2

++ yast2-qt-2.20.4.tar.bz2 -> yast2-qt-2.20.7.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.20.4/VERSION.cmake 
new/yast2-qt-2.20.7/VERSION.cmake
--- old/yast2-qt-2.20.4/VERSION.cmake   2011-02-21 17:40:08.0 +0100
+++ new/yast2-qt-2.20.7/VERSION.cmake   2011-04-12 16:36:29.0 +0200
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "2")
 SET(VERSION_MINOR "20")
-SET(VERSION_PATCH "4")
+SET(VERSION_PATCH "7")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.20.4/package/yast2-qt.changes 
new/yast2-qt-2.20.7/package/yast2-qt.changes
--- old/yast2-qt-2.20.4/package/yast2-qt.changes2011-02-21 
17:40:08.0 +0100
+++ new/yast2-qt-2.20.7/package/yast2-qt.changes2011-04-12 
16:36:30.0 +0200
@@ -1,4 +1,22 @@
 ---
+Tue Apr 12 16:33:56 CEST 2011 - tgoettlic...@suse.de
+
+- Fixed line breaks in LogView (bnc #684759)
+- V 2.20.7
+
+---
+Wed Mar 16 10:48:50 CET 2011 - tgoettlic...@suse.de
+
+- Fixed dependencies (bnc #667938)
+- V 2.20.6
+
+---
+Tue Mar  8 16:19:49 CET 2011 - tgoettlic...@suse.de
+
+- Show block devices in file selection dialog (bnc #661685)
+- V 2.20.5
+
+---
 Mon Feb 21 17:37:47 CET 2011 - tgoettlic...@suse.de
 
 - Fixed unselecting items for tree widget (bnc #673801)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.20.4/src/YQApplication.cc 
new/yast2-qt-2.20.7/src/YQApplication.cc
--- old/yast2-qt-2.20.4/src/YQApplication.cc2011-02-21 17:40:08.0 
+0100
+++ new/yast2-qt-2.20.7/src/YQApplication.cc2011-04-12 16:36:29.0 
+0200
@@ -516,12 +516,19 @@
 {
 normalCursor();
 
-QString fileName =
-   QFileDialog::getOpenFileName( 0,// 
parent
- fromUTF8( headline ) ,// 
caption
- fromUTF8( startWith ),// dir
- fromUTF8( filter ),   // 
filter
-  0, QFileDialog::DontUseNativeDialog);
+QFileDialog* dialog = new QFileDialog( 0,  // 
parent
+   fromUTF8( headline ),   // 
caption
+   fromUTF8( startWith ),  // dir
+   fromUTF8( filter ));
// filter
+dialog->setFileMode( QFileDialog::ExistingFile );
+dialog->setFilter( QDir::System | dialog->filter() );
+dialog->setOptions( QFileDialog::DontUseNativeDialog );
+
+QString fileName;
+if( dialog->exec() == QDialog::Accepted )
+fileName 

commit yast2-qt for openSUSE:Factory

2011-02-21 Thread h_root

Hello community,

here is the log from the commit of package yast2-qt for openSUSE:Factory
checked in at Tue Feb 22 00:00:49 CET 2011.




--- yast2-qt/yast2-qt.changes   2011-02-16 11:11:17.0 +0100
+++ yast2-qt/yast2-qt.changes   2011-02-21 17:34:06.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb 21 17:37:47 CET 2011 - tgoettlic...@suse.de
+
+- Fixed unselecting items for tree widget (bnc #673801)
+- V 2.20.4
+
+---

calling whatdependson for head-i586


Old:

  yast2-qt-2.20.3.tar.bz2

New:

  yast2-qt-2.20.4.tar.bz2



Other differences:
--
++ yast2-qt.spec ++
--- /var/tmp/diff_new_pack.AdJZyJ/_old  2011-02-21 18:34:04.0 +0100
+++ /var/tmp/diff_new_pack.AdJZyJ/_new  2011-02-21 18:34:04.0 +0100
@@ -18,11 +18,11 @@
 
 
 Name:   yast2-qt
-Version:2.20.3
+Version:2.20.4
 Release:1
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:yast2-qt-2.20.3.tar.bz2
+Source0:yast2-qt-2.20.4.tar.bz2
 Group:  System/YaST
 License:GPLv2+
 BuildRequires:  docbook-xsl-stylesheets

++ yast2-qt-2.20.3.tar.bz2 -> yast2-qt-2.20.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.20.3/VERSION.cmake 
new/yast2-qt-2.20.4/VERSION.cmake
--- old/yast2-qt-2.20.3/VERSION.cmake   2011-02-16 11:15:49.0 +0100
+++ new/yast2-qt-2.20.4/VERSION.cmake   2011-02-21 17:40:08.0 +0100
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "2")
 SET(VERSION_MINOR "20")
-SET(VERSION_PATCH "3")
+SET(VERSION_PATCH "4")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.20.3/package/yast2-qt.changes 
new/yast2-qt-2.20.4/package/yast2-qt.changes
--- old/yast2-qt-2.20.3/package/yast2-qt.changes2011-02-16 
11:15:50.0 +0100
+++ new/yast2-qt-2.20.4/package/yast2-qt.changes2011-02-21 
17:40:08.0 +0100
@@ -1,4 +1,10 @@
 ---
+Mon Feb 21 17:37:47 CET 2011 - tgoettlic...@suse.de
+
+- Fixed unselecting items for tree widget (bnc #673801)
+- V 2.20.4
+
+---
 Wed Feb 16 11:14:10 CET 2011 - tgoettlic...@suse.de
 
 - Fixed event handling in context menu (bnc #671147)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-qt-2.20.3/src/YQTree.cc 
new/yast2-qt-2.20.4/src/YQTree.cc
--- old/yast2-qt-2.20.3/src/YQTree.cc   2011-02-16 11:15:50.0 +0100
+++ new/yast2-qt-2.20.4/src/YQTree.cc   2011-02-21 17:40:08.0 +0100
@@ -175,6 +175,7 @@
 YQTreeItem * yqTreeItem = (YQTreeItem *) treeItem->data();
 YUI_CHECK_PTR( yqTreeItem );
 
+
 if ( selected )
 {
selectItem( yqTreeItem );
@@ -246,6 +247,23 @@
 
 YTree::deselectAllItems();
 _qt_treeWidget->clearSelection();
+
+if ( hasMultiSelection() )
+{
+QTreeWidgetItemIterator it( _qt_treeWidget);
+while (*it)
+{
+YQTreeItem * treeItem = dynamic_cast (*it);
+
+if ( treeItem )
+{
+  treeItem->setCheckState( 0, Qt::Unchecked );
+  treeItem->origItem()->setSelected( false );
+   }
+   ++it;
+}
+}
+
 }
 
 






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org