Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 104408 | Differences between
and this patch

Collapse All | Expand All

(-)src/optionswindow.cpp.orig (-5 / +4 lines)
Lines 3365-3378 Link Here
3365
gboolean optionsWindowItem_start::applyChanges()
3365
gboolean optionsWindowItem_start::applyChanges()
3366
{
3366
{
3367
	gulong		autoLogonStatus;
3367
	gulong		autoLogonStatus;
3368
	GtkTreeIter	iter;
3368
	gint i;
3369
	
3369
	
3370
	autoLogonStatus = 0;
3370
	autoLogonStatus = 0;
3371
	
3371
	
3372
	gtk_combo_box_get_active_iter(GTK_COMBO_BOX(autoLogonStatusList), &iter);
3372
	i = gtk_combo_box_get_active(GTK_COMBO_BOX(autoLogonStatusList));
3373
	gtk_tree_model_get(gtk_combo_box_get_model(GTK_COMBO_BOX(autoLogonStatusList)),
3373
	if (i != 0)
3374
					   &iter, 1, &autoLogonStatus,
3374
		autoLogonStatus = categories[i-1].status;
3375
					   -1);
3376
	
3375
	
3377
	
3376
	
3378
	settings_getSettings()->setProperties(TRUE, "startup",
3377
	settings_getSettings()->setProperties(TRUE, "startup",

Return to bug 104408