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

Collapse All | Expand All

(-)kmyfirewall/kmfwidgets/kmfsystemsettingslinux.cpp.orig (+11 lines)
Lines 57-62 Link Here
57
		this, SLOT( slotSettingChanged() ) );
57
		this, SLOT( slotSettingChanged() ) );
58
	connect( m_cob_distribution, SIGNAL( activated( const QString& ) ),
58
	connect( m_cob_distribution, SIGNAL( activated( const QString& ) ),
59
		this, SLOT( slotDistributionChanged() ) );
59
		this, SLOT( slotDistributionChanged() ) );
60
  
61
	m_url_ipt_path->setEnabled( false );
62
	m_url_mod_path->setEnabled( false );
63
	m_url_init_path->setEnabled( false );
64
	m_url_runlevel_path->setEnabled( false );
65
	m_cob_distribution->setEnabled( false );
60
}
66
}
61
67
62
KMFSystemSettingsLinux::~KMFSystemSettingsLinux()
68
KMFSystemSettingsLinux::~KMFSystemSettingsLinux()
Lines 77-82 Link Here
77
		kdDebug() << "KMFInterfaceWidget::updateView() - ERROR: m_target == 0 " << endl;
83
		kdDebug() << "KMFInterfaceWidget::updateView() - ERROR: m_target == 0 " << endl;
78
		return;
84
		return;
79
	}
85
	}
86
	m_url_ipt_path->setEnabled( true );
87
	m_url_mod_path->setEnabled( true );
88
	m_url_init_path->setEnabled( true );
89
	m_url_runlevel_path->setEnabled( true );
90
	m_cob_distribution->setEnabled( true ); 
80
	KMFTargetConfig *conf = m_target->config();
91
	KMFTargetConfig *conf = m_target->config();
81
92
82
	kdDebug() << "KMFInterfaceWidget::updateView() - config: " << endl;
93
	kdDebug() << "KMFInterfaceWidget::updateView() - config: " << endl;
(-)kmyfirewall/kmfwidgets/kmfinterfacewidget.cpp.orig (+8 lines)
Lines 53-58 Link Here
53
		m_cb_int_name->insertItem( "tap" );
53
		m_cb_int_name->insertItem( "tap" );
54
		m_cb_int_name->insertItem( "gre" );
54
		m_cb_int_name->insertItem( "gre" );
55
		m_cb_int_name->insertItem( "lo" );
55
		m_cb_int_name->insertItem( "lo" );
56
		m_cb_int_name->setEnabled( false );
57
		m_sb_int_num->setEnabled( false );
58
		m_b_add_int->setEnabled( false );
59
		m_b_del_int->setEnabled( false );
56
}
60
}
57
61
58
KMFInterfaceWidget::~KMFInterfaceWidget() {}
62
KMFInterfaceWidget::~KMFInterfaceWidget() {}
Lines 68-73 Link Here
68
	if ( ! m_target ) {
72
	if ( ! m_target ) {
69
		return;
73
		return;
70
	}
74
	}
75
	m_cb_int_name->setEnabled( true );
76
	m_sb_int_num->setEnabled( true );
77
	m_b_add_int->setEnabled( true );
78
	m_b_del_int->setEnabled( true );
71
	KMFTargetConfig *conf = m_target->config();
79
	KMFTargetConfig *conf = m_target->config();
72
	kdDebug() << "Load Config:" << endl;
80
	kdDebug() << "Load Config:" << endl;
73
	kdDebug() << conf->toString() << endl;
81
	kdDebug() << conf->toString() << endl;

Return to bug 211288