[yast-commit] r62091 - in /trunk/gtk: ./ src/ src/pkg/
Author: rpmcruz Date: Tue Jun 8 18:08:11 2010 New Revision: 62091 URL: http://svn.opensuse.org/viewcvs/yast?rev=62091&view=rev Log: * src/pkg/ygtkpkgfilterview.cc: bug fix: run solver on switch repository. Reported by Atri Bhattacharya. * src/pkg/ygtkpkgfilterview.cc: bug fix: run solver on menus: "File > Import" and "Extras > Install All...". * src/pkg/*.cc: bug fix 610313: it looks like y2makepot doesn't like our inline Textdomain comment as: /* Textdomain "yast2-gtk" */. Modified: trunk/gtk/ChangeLog trunk/gtk/src/YGTable.cc trunk/gtk/src/pkg/YGPackageSelector.cc trunk/gtk/src/pkg/ygtkpkgdetailview.cc trunk/gtk/src/pkg/ygtkpkgfilterview.cc trunk/gtk/src/pkg/ygtkpkghistorydialog.cc trunk/gtk/src/pkg/ygtkpkglistview.cc trunk/gtk/src/pkg/ygtkpkgmenubar.cc trunk/gtk/src/pkg/ygtkpkgpatternview.cc trunk/gtk/src/pkg/ygtkpkgproductdialog.cc trunk/gtk/src/pkg/ygtkpkgrpmgroupsview.cc trunk/gtk/src/pkg/ygtkpkgsearchentry.cc trunk/gtk/src/pkg/ygtkpkgstatusbar.cc trunk/gtk/src/pkg/ygtkpkgundolist.cc trunk/gtk/src/pkg/yzypptags.cc trunk/gtk/src/pkg/yzyppwrapper.cc trunk/gtk/src/ygtktreeview.c Modified: trunk/gtk/ChangeLog URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/ChangeLog?rev=62091&r1=62090&r2=62091&view=diff ============================================================================== --- trunk/gtk/ChangeLog (original) +++ trunk/gtk/ChangeLog Tue Jun 8 18:08:11 2010 @@ -1,3 +1,15 @@ +2010-06-07 Ricardo Cruz <rpmcruz@alunos.dcc.fc.up.pt> + + * src/pkg/ygtkpkgfilterview.cc: bug fix: run solver on + switch repository. Reported by Atri Bhattacharya. + + * src/pkg/ygtkpkgfilterview.cc: bug fix: run solver on + menus: "File > Import" and "Extras > Install All...". + + * src/pkg/*.cc: bug fix 610313: it looks like y2makepot + doesn't like our inline Textdomain comment as: + /* Textdomain "yast2-gtk" */. + 2010-04-25 Ricardo Cruz <rpmcruz@alunos.dcc.fc.up.pt> * src/pkg/ygtkpkgundolist.cc: show 'inconsistent' state Modified: trunk/gtk/src/YGTable.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/YGTable.cc?rev=62091&r1=62090&r2=62091&view=diff ============================================================================== --- trunk/gtk/src/YGTable.cc (original) +++ trunk/gtk/src/YGTable.cc Tue Jun 8 18:08:11 2010 @@ -1,7 +1,9 @@ /******************************************************************** * YaST2-GTK - http://en.opensuse.org/YaST2-GTK * ********************************************************************/ -/* Textdomain "yast2-gtk" */ +/* + Textdomain "yast2-gtk" + */ #include "YGi18n.h" #define YUILogComponent "gtk" Modified: trunk/gtk/src/pkg/YGPackageSelector.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/pkg/YGPackageSelector.cc?rev=62091&r1=62090&r2=62091&view=diff ============================================================================== --- trunk/gtk/src/pkg/YGPackageSelector.cc (original) +++ trunk/gtk/src/pkg/YGPackageSelector.cc Tue Jun 8 18:08:11 2010 @@ -1,7 +1,9 @@ /******************************************************************** * YaST2-GTK - http://en.opensuse.org/YaST2-GTK * ********************************************************************/ -/* Textdomain "yast2-gtk" */ +/* + Textdomain "yast2-gtk" + */ #include "YGi18n.h" #include "config.h" Modified: trunk/gtk/src/pkg/ygtkpkgdetailview.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/pkg/ygtkpkgdetailview.cc?rev=62091&r1=62090&r2=62091&view=diff ============================================================================== --- trunk/gtk/src/pkg/ygtkpkgdetailview.cc (original) +++ trunk/gtk/src/pkg/ygtkpkgdetailview.cc Tue Jun 8 18:08:11 2010 @@ -1,10 +1,13 @@ /******************************************************************** * YaST2-GTK - http://en.opensuse.org/YaST2-GTK * ********************************************************************/ -/* Textdomain "yast2-gtk" */ /* YGtkPkgDetailView, selectable info-box */ // check the header file for information about this widget +/* + Textdomain "yast2-gtk" + */ + #include "YGi18n.h" #include "config.h" #include "YGDialog.h" Modified: trunk/gtk/src/pkg/ygtkpkgfilterview.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/pkg/ygtkpkgfilterview.cc?rev=62091&r1=62090&r2=62091&view=diff ============================================================================== --- trunk/gtk/src/pkg/ygtkpkgfilterview.cc (original) +++ trunk/gtk/src/pkg/ygtkpkgfilterview.cc Tue Jun 8 18:08:11 2010 @@ -1,10 +1,13 @@ /******************************************************************** * YaST2-GTK - http://en.opensuse.org/YaST2-GTK * ********************************************************************/ -/* Textdomain "yast2-gtk" */ /* YGtkPkgFilterView, several zypp attribute query criteria implementations */ // check the header file for information about this widget +/* + Textdomain "yast2-gtk" + */ + #include "YGi18n.h" #include "YGUI.h" #include "config.h" @@ -449,7 +452,7 @@ else zypp::getZYpp()->resolver()->addUpgradeRepo (zrepo); sync_toolbox_buttons (repo, gtk_widget_get_parent (GTK_WIDGET (button))); - Ypp::notifySelModified(); + Ypp::runSolver(); } GtkWidget *YGtkPkgRepositoryModel::createToolboxRow (int row) Modified: trunk/gtk/src/pkg/ygtkpkghistorydialog.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/pkg/ygtkpkghistorydialog.cc?rev=62091&r1=62090&r2=62091&view=diff ============================================================================== --- trunk/gtk/src/pkg/ygtkpkghistorydialog.cc (original) +++ trunk/gtk/src/pkg/ygtkpkghistorydialog.cc Tue Jun 8 18:08:11 2010 @@ -1,10 +1,13 @@ /******************************************************************** * YaST2-GTK - http://en.opensuse.org/YaST2-GTK * ********************************************************************/ -/* Textdomain "yast2-gtk" */ /* YGtkPkgMenuBar, menu bar */ // check the header file for information about this widget +/* + Textdomain "yast2-gtk" + */ + #include "YGi18n.h" #include "config.h" #include "ygtkpkghistorydialog.h" Modified: trunk/gtk/src/pkg/ygtkpkglistview.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/pkg/ygtkpkglistview.cc?rev=62091&r1=62090&r2=62091&view=diff ============================================================================== --- trunk/gtk/src/pkg/ygtkpkglistview.cc (original) +++ trunk/gtk/src/pkg/ygtkpkglistview.cc Tue Jun 8 18:08:11 2010 @@ -1,10 +1,13 @@ /******************************************************************** * YaST2-GTK - http://en.opensuse.org/YaST2-GTK * ********************************************************************/ -/* Textdomain "yast2-gtk" */ /* YGtkPkgListView, Zypp GtkTreeView implementation */ // check the header file for information about this widget +/* + Textdomain "yast2-gtk" + */ + #define YUILogComponent "gtk" #include "config.h" #include "YGi18n.h" Modified: trunk/gtk/src/pkg/ygtkpkgmenubar.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/pkg/ygtkpkgmenubar.cc?rev=62091&r1=62090&r2=62091&view=diff ============================================================================== --- trunk/gtk/src/pkg/ygtkpkgmenubar.cc (original) +++ trunk/gtk/src/pkg/ygtkpkgmenubar.cc Tue Jun 8 18:08:11 2010 @@ -1,10 +1,13 @@ /******************************************************************** * YaST2-GTK - http://en.opensuse.org/YaST2-GTK * ********************************************************************/ -/* Textdomain "yast2-gtk" */ /* YGtkPkgMenuBar, menu bar */ // check the header file for information about this widget +/* + Textdomain "yast2-gtk" + */ + #include "YGi18n.h" #include "config.h" #include "YGDialog.h" @@ -262,7 +265,7 @@ } g_free (filename); - Ypp::notifySelModified(); + Ypp::runSolver(); } @@ -336,7 +339,6 @@ } g_free (filename); - Ypp::notifySelModified(); } } @@ -508,7 +510,7 @@ } } - Ypp::notifySelModified(); + Ypp::runSolver(); YGPackageSelector::get()->popupChanges(); } Modified: trunk/gtk/src/pkg/ygtkpkgpatternview.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/pkg/ygtkpkgpatternview.cc?rev=62091&r1=62090&r2=62091&view=diff ============================================================================== --- trunk/gtk/src/pkg/ygtkpkgpatternview.cc (original) +++ trunk/gtk/src/pkg/ygtkpkgpatternview.cc Tue Jun 8 18:08:11 2010 @@ -1,10 +1,13 @@ /******************************************************************** * YaST2-GTK - http://en.opensuse.org/YaST2-GTK * ********************************************************************/ -/* Textdomain "yast2-gtk" */ /* YGtkPkgPatternList, pattern and language list implementations */ // check the header file for information about this widget +/* + Textdomain "yast2-gtk" + */ + #include "YGi18n.h" #include "config.h" #include "YGUtils.h" Modified: trunk/gtk/src/pkg/ygtkpkgproductdialog.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/pkg/ygtkpkgproductdialog.cc?rev=62091&r1=62090&r2=62091&view=diff ============================================================================== --- trunk/gtk/src/pkg/ygtkpkgproductdialog.cc (original) +++ trunk/gtk/src/pkg/ygtkpkgproductdialog.cc Tue Jun 8 18:08:11 2010 @@ -1,10 +1,13 @@ /******************************************************************** * YaST2-GTK - http://en.opensuse.org/YaST2-GTK * ********************************************************************/ -/* Textdomain "yast2-gtk" */ /* YGtkPkgMenuBar, menu bar */ // check the header file for information about this widget +/* + Textdomain "yast2-gtk" + */ + #include "YGi18n.h" #include "config.h" #include "YGDialog.h" Modified: trunk/gtk/src/pkg/ygtkpkgrpmgroupsview.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/pkg/ygtkpkgrpmgroupsview.cc?rev=62091&r1=62090&r2=62091&view=diff ============================================================================== --- trunk/gtk/src/pkg/ygtkpkgrpmgroupsview.cc (original) +++ trunk/gtk/src/pkg/ygtkpkgrpmgroupsview.cc Tue Jun 8 18:08:11 2010 @@ -1,10 +1,13 @@ /******************************************************************** * YaST2-GTK - http://en.opensuse.org/YaST2-GTK * ********************************************************************/ -/* Textdomain "yast2-gtk" */ /* YGtkPkgRpmGroupsView, rpm-groups tree-view */ // check the header file for information about this widget +/* + Textdomain "yast2-gtk" + */ + #include "YGi18n.h" #include "YGUI.h" #include "config.h" Modified: trunk/gtk/src/pkg/ygtkpkgsearchentry.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/pkg/ygtkpkgsearchentry.cc?rev=62091&r1=62090&r2=62091&view=diff ============================================================================== --- trunk/gtk/src/pkg/ygtkpkgsearchentry.cc (original) +++ trunk/gtk/src/pkg/ygtkpkgsearchentry.cc Tue Jun 8 18:08:11 2010 @@ -1,10 +1,13 @@ /******************************************************************** * YaST2-GTK - http://en.opensuse.org/YaST2-GTK * ********************************************************************/ -/* Textdomain "yast2-gtk" */ /* YGtkPkgSearchEntry, zypp query string attributes */ // check the header file for information about this widget +/* + Textdomain "yast2-gtk" + */ + #include "YGi18n.h" #include "config.h" #include "YGUtils.h" Modified: trunk/gtk/src/pkg/ygtkpkgstatusbar.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/pkg/ygtkpkgstatusbar.cc?rev=62091&r1=62090&r2=62091&view=diff ============================================================================== --- trunk/gtk/src/pkg/ygtkpkgstatusbar.cc (original) +++ trunk/gtk/src/pkg/ygtkpkgstatusbar.cc Tue Jun 8 18:08:11 2010 @@ -1,10 +1,13 @@ /******************************************************************** * YaST2-GTK - http://en.opensuse.org/YaST2-GTK * ********************************************************************/ -/* Textdomain "yast2-gtk" */ /* YGtkPkgStatusBar, a status-bar */ // check the header file for information about this widget +/* + Textdomain "yast2-gtk" + */ + #include "YGi18n.h" #include "config.h" #include "YGUI.h" Modified: trunk/gtk/src/pkg/ygtkpkgundolist.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/pkg/ygtkpkgundolist.cc?rev=62091&r1=62090&r2=62091&view=diff ============================================================================== --- trunk/gtk/src/pkg/ygtkpkgundolist.cc (original) +++ trunk/gtk/src/pkg/ygtkpkgundolist.cc Tue Jun 8 18:08:11 2010 @@ -1,10 +1,13 @@ /******************************************************************** * YaST2-GTK - http://en.opensuse.org/YaST2-GTK * ********************************************************************/ -/* Textdomain "yast2-gtk" */ /* YGtkPkgUndoList, list of changes */ // check the header file for information about this utility +/* + Textdomain "yast2-gtk" + */ + #include "YGi18n.h" #include "config.h" #include "YGDialog.h" Modified: trunk/gtk/src/pkg/yzypptags.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/pkg/yzypptags.cc?rev=62091&r1=62090&r2=62091&view=diff ============================================================================== --- trunk/gtk/src/pkg/yzypptags.cc (original) +++ trunk/gtk/src/pkg/yzypptags.cc Tue Jun 8 18:08:11 2010 @@ -1,10 +1,13 @@ /******************************************************************** * YaST2-GTK - http://en.opensuse.org/YaST2-GTK * ********************************************************************/ -/* Textdomain "yast2-gtk" */ /* Tags PackageKit translator */ // check the header file for information about this translator +/* + Textdomain "yast2-gtk" + */ + #include "YGi18n.h" #define YUILogComponent "gtk-pkg" #include <YUILog.h> Modified: trunk/gtk/src/pkg/yzyppwrapper.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/pkg/yzyppwrapper.cc?rev=62091&r1=62090&r2=62091&view=diff ============================================================================== --- trunk/gtk/src/pkg/yzyppwrapper.cc (original) +++ trunk/gtk/src/pkg/yzyppwrapper.cc Tue Jun 8 18:08:11 2010 @@ -1,10 +1,13 @@ /******************************************************************** * YaST2-GTK - http://en.opensuse.org/YaST2-GTK * ********************************************************************/ -/* Textdomain "yast2-gtk" */ /* Ypp, the zypp wrapper */ // check the header file for information about this wrapper +/* + Textdomain "yast2-gtk" + */ + #include "config.h" #include "YGi18n.h" #define YUILogComponent "gtk-pkg" Modified: trunk/gtk/src/ygtktreeview.c URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/ygtktreeview.c?rev=62091&r1=62090&r2=62091&view=diff ============================================================================== --- trunk/gtk/src/ygtktreeview.c (original) +++ trunk/gtk/src/ygtktreeview.c Tue Jun 8 18:08:11 2010 @@ -1,10 +1,13 @@ /******************************************************************** * YaST2-GTK - http://en.opensuse.org/YaST2-GTK * ********************************************************************/ - /* YGtkTreeView widget */ // check the header file for information about this widget +/* + Textdomain "yast2-gtk" + */ + #include <config.h> #include "ygtktreeview.h" #include <gtk/gtk.h> -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
rpmcruz@svn.opensuse.org