Hello community,

here is the log from the commit of package yast2-gtk for openSUSE:Factory
checked in at Mon Mar 7 15:15:10 CET 2011.



--------
--- yast2-gtk/yast2-gtk.changes 2011-02-11 16:13:29.000000000 +0100
+++ /mounts/work_src_done/STABLE/yast2-gtk/yast2-gtk.changes    2011-03-04 
22:13:31.000000000 +0100
@@ -1,0 +2,8 @@
+Fri Mar 04 09:07:00 WET 2011 - [email protected]
+
+- 2.21.93
+- firewall tool crash fix (bnc#677007).
+- refer to LibreOffice rather than OpenOffice.org in help text
+(bnc#675486).
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
  yast2-gtk-2.21.92.tar.bz2

New:
----
  yast2-gtk-2.21.93.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ yast2-gtk.spec ++++++
--- /var/tmp/diff_new_pack.4kffv7/_old  2011-03-07 15:14:18.000000000 +0100
+++ /var/tmp/diff_new_pack.4kffv7/_new  2011-03-07 15:14:18.000000000 +0100
@@ -18,11 +18,11 @@
 
 
 Name:           yast2-gtk
-Version:        2.21.92
+Version:        2.21.93
 Release:        1
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-Source0:        yast2-gtk-2.21.92.tar.bz2
+Source0:        yast2-gtk-2.21.93.tar.bz2
 Url:            http://en.opensuse.org/YaST2-GTK
 Summary:        YaST2 - GTK+ Graphical User Interface
 Group:          System/YaST

++++++ yast2-gtk-2.21.92.tar.bz2 -> yast2-gtk-2.21.93.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-gtk-2.21.92/VERSION 
new/yast2-gtk-2.21.93/VERSION
--- old/yast2-gtk-2.21.92/VERSION       2011-02-11 16:09:02.000000000 +0100
+++ new/yast2-gtk-2.21.93/VERSION       2011-03-04 22:12:22.000000000 +0100
@@ -1 +1 @@
-2.21.92
+2.21.93
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-gtk-2.21.92/VERSION.cmake 
new/yast2-gtk-2.21.93/VERSION.cmake
--- old/yast2-gtk-2.21.92/VERSION.cmake 2011-02-11 16:09:02.000000000 +0100
+++ new/yast2-gtk-2.21.93/VERSION.cmake 2011-03-04 22:12:21.000000000 +0100
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "2")
 SET(VERSION_MINOR "21")
-SET(VERSION_PATCH "92")
+SET(VERSION_PATCH "93")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-gtk-2.21.92/package/yast2-gtk.changes 
new/yast2-gtk-2.21.93/package/yast2-gtk.changes
--- old/yast2-gtk-2.21.92/package/yast2-gtk.changes     2011-02-11 
16:09:02.000000000 +0100
+++ new/yast2-gtk-2.21.93/package/yast2-gtk.changes     2011-03-04 
22:12:22.000000000 +0100
@@ -1,4 +1,12 @@
 -------------------------------------------------------------------
+Fri Mar 04 09:07:00 WET 2011 - [email protected]
+
+- 2.21.93
+- firewall tool crash fix (bnc#677007).
+- refer to LibreOffice rather than OpenOffice.org in help text
+(bnc#675486).
+
+-------------------------------------------------------------------
 Fri Feb 11 15:05:00 WET 2011 - [email protected]
 
 - 2.21.92
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-gtk-2.21.92/src/YGTreeView.cc 
new/yast2-gtk-2.21.93/src/YGTreeView.cc
--- old/yast2-gtk-2.21.92/src/YGTreeView.cc     2011-02-11 16:09:02.000000000 
+0100
+++ new/yast2-gtk-2.21.93/src/YGTreeView.cc     2011-03-04 22:12:21.000000000 
+0100
@@ -388,6 +388,7 @@
 
        void setCell (GtkTreeIter *iter, int column, const YTableCell *cell)
        {
+               if (!cell) return;
                std::string label (cell->label());
                if (label == "X")
                        label = YUI::app()->glyph (YUIGlyph_CheckMark);
@@ -428,8 +429,10 @@
        if (item) {
                        GtkTreeIter iter;
                        addRow (item, &iter);
-                       for (int i = 0; i < columns(); i++)
-                               setCell (&iter, i, item->cell(i));
+                       int i = 0;
+                       for (YTableCellIterator it = item->cellsBegin();
+                            it != item->cellsEnd(); it++)
+                               setCell (&iter, i++, *it);
                        if (item->selected())
                                focusItem (item, true);
        }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-gtk-2.21.92/src/YGUtils.cc 
new/yast2-gtk-2.21.93/src/YGUtils.cc
--- old/yast2-gtk-2.21.92/src/YGUtils.cc        2011-02-11 16:09:02.000000000 
+0100
+++ new/yast2-gtk-2.21.93/src/YGUtils.cc        2011-03-04 22:12:21.000000000 
+0100
@@ -632,6 +632,7 @@
        { "Install", _("Install"), GTK_STOCK_APPLY },
        { "OK", _("OK"), GTK_STOCK_OK },
        { "Cancel", _("Cancel"), GTK_STOCK_CANCEL },
+       { "Abort", _("Abort"), GTK_STOCK_CANCEL },
        { "Close", _("Close"), GTK_STOCK_CLOSE },
        { "Yes", _("Yes"), GTK_STOCK_YES },
        { "No", _("No"), GTK_STOCK_NO },
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-gtk-2.21.92/src/pkg/pkg-selector-help.cc 
new/yast2-gtk-2.21.93/src/pkg/pkg-selector-help.cc
--- old/yast2-gtk-2.21.92/src/pkg/pkg-selector-help.cc  2011-02-11 
16:09:02.000000000 +0100
+++ new/yast2-gtk-2.21.93/src/pkg/pkg-selector-help.cc  2011-03-04 
22:12:21.000000000 +0100
@@ -54,10 +54,10 @@
        _("<h2>Filters</h2>"),
        _("<h3>Search</h3>"
        "<p>Enter free text into the search-field to match their names and 
descriptions. "
-       "(a search for 'office' will bring up the 'OpenOffice' packages as well 
as "
+       "(a search for 'office' will bring up the 'LibreOffice' packages as 
well as "
        "'AbiWord' which carries the word 'office' in its description). You can 
search for "
        "multiple keywords by separating the with a white space (e.g. 'spread 
sheet' "
-       "would return 'OpenOffice-calc').You may use the "
+       "would return 'libreoffice-calc').You may use the "
        "search combined with a filter, like searching for a package in a given 
repository. "
        "Other search attributes are provided, such as to search for a given 
file.</p>"),
        _("<h3>Groups</h3>"


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to