[yast-commit] r38325 - /branches/tmp/sh/mod-ui/qt/src/
Author: sh-sh-sh Date: Wed Jun 6 16:55:19 2007 New Revision: 38325 URL: http://svn.opensuse.org/viewcvs/yast?rev=38325&view=rev Log: new base method name Modified: branches/tmp/sh/mod-ui/qt/src/YQAlignment.cc branches/tmp/sh/mod-ui/qt/src/YQAlignment.h branches/tmp/sh/mod-ui/qt/src/YQBarGraph.cc branches/tmp/sh/mod-ui/qt/src/YQBarGraph.h branches/tmp/sh/mod-ui/qt/src/YQCheckBox.cc branches/tmp/sh/mod-ui/qt/src/YQCheckBox.h branches/tmp/sh/mod-ui/qt/src/YQCheckBoxFrame.cc branches/tmp/sh/mod-ui/qt/src/YQCheckBoxFrame.h branches/tmp/sh/mod-ui/qt/src/YQColoredLabel.cc branches/tmp/sh/mod-ui/qt/src/YQColoredLabel.h branches/tmp/sh/mod-ui/qt/src/YQComboBox.cc branches/tmp/sh/mod-ui/qt/src/YQComboBox.h branches/tmp/sh/mod-ui/qt/src/YQDate.cc branches/tmp/sh/mod-ui/qt/src/YQDate.h branches/tmp/sh/mod-ui/qt/src/YQDialog.cc branches/tmp/sh/mod-ui/qt/src/YQDialog.h branches/tmp/sh/mod-ui/qt/src/YQDownloadProgress.cc branches/tmp/sh/mod-ui/qt/src/YQDownloadProgress.h branches/tmp/sh/mod-ui/qt/src/YQDumbTab.cc branches/tmp/sh/mod-ui/qt/src/YQDumbTab.h branches/tmp/sh/mod-ui/qt/src/YQFrame.cc branches/tmp/sh/mod-ui/qt/src/YQFrame.h branches/tmp/sh/mod-ui/qt/src/YQGenericButton.cc branches/tmp/sh/mod-ui/qt/src/YQGenericButton.h branches/tmp/sh/mod-ui/qt/src/YQIntField.cc branches/tmp/sh/mod-ui/qt/src/YQIntField.h branches/tmp/sh/mod-ui/qt/src/YQLabel.cc branches/tmp/sh/mod-ui/qt/src/YQLabel.h branches/tmp/sh/mod-ui/qt/src/YQLogView.cc branches/tmp/sh/mod-ui/qt/src/YQLogView.h branches/tmp/sh/mod-ui/qt/src/YQMenuButton.cc branches/tmp/sh/mod-ui/qt/src/YQMenuButton.h branches/tmp/sh/mod-ui/qt/src/YQMultiLineEdit.cc branches/tmp/sh/mod-ui/qt/src/YQMultiLineEdit.h branches/tmp/sh/mod-ui/qt/src/YQMultiProgressMeter.cc branches/tmp/sh/mod-ui/qt/src/YQMultiProgressMeter.h branches/tmp/sh/mod-ui/qt/src/YQMultiSelectionBox.cc branches/tmp/sh/mod-ui/qt/src/YQMultiSelectionBox.h branches/tmp/sh/mod-ui/qt/src/YQPartitionSplitter.cc branches/tmp/sh/mod-ui/qt/src/YQPartitionSplitter.h branches/tmp/sh/mod-ui/qt/src/YQProgressBar.cc branches/tmp/sh/mod-ui/qt/src/YQProgressBar.h branches/tmp/sh/mod-ui/qt/src/YQRadioButton.cc branches/tmp/sh/mod-ui/qt/src/YQRadioButton.h branches/tmp/sh/mod-ui/qt/src/YQRadioButtonGroup.cc branches/tmp/sh/mod-ui/qt/src/YQRadioButtonGroup.h branches/tmp/sh/mod-ui/qt/src/YQReplacePoint.cc branches/tmp/sh/mod-ui/qt/src/YQReplacePoint.h branches/tmp/sh/mod-ui/qt/src/YQRichText.cc branches/tmp/sh/mod-ui/qt/src/YQRichText.h branches/tmp/sh/mod-ui/qt/src/YQSelectionBox.cc branches/tmp/sh/mod-ui/qt/src/YQSelectionBox.h branches/tmp/sh/mod-ui/qt/src/YQSlider.cc branches/tmp/sh/mod-ui/qt/src/YQSlider.h branches/tmp/sh/mod-ui/qt/src/YQSplit.cc branches/tmp/sh/mod-ui/qt/src/YQSplit.h branches/tmp/sh/mod-ui/qt/src/YQSquash.cc branches/tmp/sh/mod-ui/qt/src/YQSquash.h branches/tmp/sh/mod-ui/qt/src/YQTable.cc branches/tmp/sh/mod-ui/qt/src/YQTable.h branches/tmp/sh/mod-ui/qt/src/YQTextEntry.cc branches/tmp/sh/mod-ui/qt/src/YQTextEntry.h branches/tmp/sh/mod-ui/qt/src/YQTime.cc branches/tmp/sh/mod-ui/qt/src/YQTime.h branches/tmp/sh/mod-ui/qt/src/YQTree.cc branches/tmp/sh/mod-ui/qt/src/YQTree.h branches/tmp/sh/mod-ui/qt/src/YQWizard.cc Modified: branches/tmp/sh/mod-ui/qt/src/YQAlignment.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQAlignme... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQAlignment.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQAlignment.cc Wed Jun 6 16:55:19 2007 @@ -37,7 +37,7 @@ } -void YQAlignment::setEnabling( bool enabled ) +void YQAlignment::setEnabled( bool enabled ) { QWidget::setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQAlignment.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQAlignme... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQAlignment.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQAlignment.h Wed Jun 6 16:55:19 2007 @@ -52,7 +52,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Sets the size Modified: branches/tmp/sh/mod-ui/qt/src/YQBarGraph.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQBarGrap... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQBarGraph.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQBarGraph.cc Wed Jun 6 16:55:19 2007 @@ -52,7 +52,7 @@ } -void YQBarGraph::setEnabling( bool enabled ) +void YQBarGraph::setEnabled( bool enabled ) { _barGraph->setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQBarGraph.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQBarGrap... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQBarGraph.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQBarGraph.h Wed Jun 6 16:55:19 2007 @@ -43,7 +43,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQCheckBox.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQCheckBo... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQCheckBox.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQCheckBox.cc Wed Jun 6 16:55:19 2007 @@ -129,7 +129,7 @@ } -void YQCheckBox::setEnabling( bool enabled ) +void YQCheckBox::setEnabled( bool enabled ) { _qt_checkbox->setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQCheckBox.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQCheckBo... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQCheckBox.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQCheckBox.h Wed Jun 6 16:55:19 2007 @@ -50,7 +50,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQCheckBoxFrame.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQCheckBo... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQCheckBoxFrame.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQCheckBoxFrame.cc Wed Jun 6 16:55:19 2007 @@ -65,7 +65,7 @@ } -void YQCheckBoxFrame::setEnabling( bool enabled ) +void YQCheckBoxFrame::setEnabled( bool enabled ) { if ( enabled ) { Modified: branches/tmp/sh/mod-ui/qt/src/YQCheckBoxFrame.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQCheckBo... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQCheckBoxFrame.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQCheckBoxFrame.h Wed Jun 6 16:55:19 2007 @@ -48,7 +48,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Set the size. Modified: branches/tmp/sh/mod-ui/qt/src/YQColoredLabel.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQColored... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQColoredLabel.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQColoredLabel.cc Wed Jun 6 16:55:19 2007 @@ -51,7 +51,7 @@ } -void YQColoredLabel::setEnabling( bool enabled ) +void YQColoredLabel::setEnabled( bool enabled ) { QLabel::setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQColoredLabel.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQColored... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQColoredLabel.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQColoredLabel.h Wed Jun 6 16:55:19 2007 @@ -48,7 +48,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQComboBox.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQComboBo... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQComboBox.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQComboBox.cc Wed Jun 6 16:55:19 2007 @@ -137,7 +137,7 @@ } -void YQComboBox::setEnabling( bool enabled ) +void YQComboBox::setEnabled( bool enabled ) { _qt_label->setEnabled( enabled ); _qt_combo_box->setEnabled( enabled ); Modified: branches/tmp/sh/mod-ui/qt/src/YQComboBox.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQComboBo... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQComboBox.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQComboBox.h Wed Jun 6 16:55:19 2007 @@ -45,7 +45,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQDate.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQDate.cc... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQDate.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQDate.cc Wed Jun 6 16:55:19 2007 @@ -65,7 +65,7 @@ } -void YQDate::setEnabling( bool enabled ) +void YQDate::setEnabled( bool enabled ) { setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQDate.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQDate.h?... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQDate.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQDate.h Wed Jun 6 16:55:19 2007 @@ -49,7 +49,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQDialog.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQDialog.... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQDialog.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQDialog.cc Wed Jun 6 16:55:19 2007 @@ -147,7 +147,7 @@ } -void YQDialog::setEnabling( bool enabled ) +void YQDialog::setEnabled( bool enabled ) { QWidget::setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQDialog.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQDialog.... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQDialog.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQDialog.h Wed Jun 6 16:55:19 2007 @@ -81,7 +81,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Sets the new size of the widget. Modified: branches/tmp/sh/mod-ui/qt/src/YQDownloadProgress.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQDownloa... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQDownloadProgress.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQDownloadProgress.cc Wed Jun 6 16:55:19 2007 @@ -58,7 +58,7 @@ } -void YQDownloadProgress::setEnabling( bool enabled ) +void YQDownloadProgress::setEnabled( bool enabled ) { _qt_progress->setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQDownloadProgress.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQDownloa... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQDownloadProgress.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQDownloadProgress.h Wed Jun 6 16:55:19 2007 @@ -49,7 +49,7 @@ * Sets the widget's enabled state. * Inherited from YWidget. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Preferred size. Modified: branches/tmp/sh/mod-ui/qt/src/YQDumbTab.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQDumbTab... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQDumbTab.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQDumbTab.cc Wed Jun 6 16:55:19 2007 @@ -89,7 +89,7 @@ } -void YQDumbTab::setEnabling( bool enabled ) +void YQDumbTab::setEnabled( bool enabled ) { QVBox::setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQDumbTab.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQDumbTab... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQDumbTab.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQDumbTab.h Wed Jun 6 16:55:19 2007 @@ -46,7 +46,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQFrame.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQFrame.c... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQFrame.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQFrame.cc Wed Jun 6 16:55:19 2007 @@ -39,7 +39,7 @@ setWidgetRep ( this ); } -void YQFrame::setEnabling( bool enabled ) +void YQFrame::setEnabled( bool enabled ) { QFrame::setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQFrame.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQFrame.h... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQFrame.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQFrame.h Wed Jun 6 16:55:19 2007 @@ -46,7 +46,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Set the size. Modified: branches/tmp/sh/mod-ui/qt/src/YQGenericButton.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQGeneric... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQGenericButton.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQGenericButton.cc Wed Jun 6 16:55:19 2007 @@ -68,12 +68,12 @@ } -void YQGenericButton::setEnabling( bool enabled ) +void YQGenericButton::setEnabled( bool enabled ) { if ( _qPushButton ) _qPushButton->setEnabled( enabled ); - YWidget::setEnabling( enabled ); + YWidget::setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQGenericButton.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQGeneric... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQGenericButton.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQGenericButton.h Wed Jun 6 16:55:19 2007 @@ -60,7 +60,7 @@ * * Reimplemented from YWidget. **/ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Returns 'true' if this button is enabled, 'false' otherwise. Modified: branches/tmp/sh/mod-ui/qt/src/YQIntField.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQIntFiel... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQIntField.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQIntField.cc Wed Jun 6 16:55:19 2007 @@ -60,7 +60,7 @@ } -void YQIntField::setEnabling( bool enabled ) +void YQIntField::setEnabled( bool enabled ) { _qt_label->setEnabled ( enabled ); _qt_spinbox->setEnabled( enabled ); Modified: branches/tmp/sh/mod-ui/qt/src/YQIntField.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQIntFiel... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQIntField.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQIntField.h Wed Jun 6 16:55:19 2007 @@ -54,7 +54,7 @@ * Sets the widget's enabled state. * Inherited from YWidget. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Preferred size. Modified: branches/tmp/sh/mod-ui/qt/src/YQLabel.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQLabel.c... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQLabel.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQLabel.cc Wed Jun 6 16:55:19 2007 @@ -63,7 +63,7 @@ } -void YQLabel::setEnabling( bool enabled ) +void YQLabel::setEnabled( bool enabled ) { QLabel::setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQLabel.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQLabel.h... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQLabel.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQLabel.h Wed Jun 6 16:55:19 2007 @@ -46,7 +46,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQLogView.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQLogView... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQLogView.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQLogView.cc Wed Jun 6 16:55:19 2007 @@ -59,7 +59,7 @@ } -void YQLogView::setEnabling( bool enabled ) +void YQLogView::setEnabled( bool enabled ) { _qt_text->setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQLogView.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQLogView... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQLogView.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQLogView.h Wed Jun 6 16:55:19 2007 @@ -49,7 +49,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQMenuButton.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQMenuBut... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQMenuButton.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQMenuButton.cc Wed Jun 6 16:55:19 2007 @@ -48,7 +48,7 @@ } void -YQMenuButton::setEnabling( bool enabled ) +YQMenuButton::setEnabled( bool enabled ) { _qt_pushbutton->setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQMenuButton.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQMenuBut... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQMenuButton.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQMenuButton.h Wed Jun 6 16:55:19 2007 @@ -46,7 +46,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQMultiLineEdit.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQMultiLi... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQMultiLineEdit.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQMultiLineEdit.cc Wed Jun 6 16:55:19 2007 @@ -66,7 +66,7 @@ } -void YQMultiLineEdit::setEnabling( bool enabled ) +void YQMultiLineEdit::setEnabled( bool enabled ) { _qt_textedit->setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQMultiLineEdit.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQMultiLi... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQMultiLineEdit.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQMultiLineEdit.h Wed Jun 6 16:55:19 2007 @@ -50,7 +50,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQMultiProgressMeter.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQMultiPr... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQMultiProgressMeter.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQMultiProgressMeter.cc Wed Jun 6 16:55:19 2007 @@ -355,7 +355,7 @@ } -void YQMultiProgressMeter::setEnabling( bool enabled ) +void YQMultiProgressMeter::setEnabled( bool enabled ) { QWidget::setEnabled( enabled ); QWidget::update(); Modified: branches/tmp/sh/mod-ui/qt/src/YQMultiProgressMeter.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQMultiPr... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQMultiProgressMeter.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQMultiProgressMeter.h Wed Jun 6 16:55:19 2007 @@ -50,7 +50,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQMultiSelectionBox.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQMultiSe... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQMultiSelectionBox.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQMultiSelectionBox.cc Wed Jun 6 16:55:19 2007 @@ -107,7 +107,7 @@ void -YQMultiSelectionBox::setEnabling( bool enabled ) +YQMultiSelectionBox::setEnabled( bool enabled ) { _qt_label->setEnabled( enabled ); _qt_listview->setEnabled( enabled ); Modified: branches/tmp/sh/mod-ui/qt/src/YQMultiSelectionBox.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQMultiSe... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQMultiSelectionBox.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQMultiSelectionBox.h Wed Jun 6 16:55:19 2007 @@ -48,7 +48,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQPartitionSplitter.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQPartiti... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQPartitionSplitter.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQPartitionSplitter.cc Wed Jun 6 16:55:19 2007 @@ -142,7 +142,7 @@ } -void YQPartitionSplitter::setEnabling( bool enabled ) +void YQPartitionSplitter::setEnabled( bool enabled ) { _qt_freeFieldLabel->setEnabled ( enabled ); _qt_newPartFieldLabel->setEnabled ( enabled ); Modified: branches/tmp/sh/mod-ui/qt/src/YQPartitionSplitter.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQPartiti... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQPartitionSplitter.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQPartitionSplitter.h Wed Jun 6 16:55:19 2007 @@ -58,7 +58,7 @@ * Sets the widget's enabled state. * Inherited from YWidget. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Preferred size. Modified: branches/tmp/sh/mod-ui/qt/src/YQProgressBar.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQProgres... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQProgressBar.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQProgressBar.cc Wed Jun 6 16:55:19 2007 @@ -61,7 +61,7 @@ } -void YQProgressBar::setEnabling( bool enabled ) +void YQProgressBar::setEnabled( bool enabled ) { _qt_label->setEnabled( enabled ); _qt_progressbar->setEnabled( enabled ); Modified: branches/tmp/sh/mod-ui/qt/src/YQProgressBar.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQProgres... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQProgressBar.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQProgressBar.h Wed Jun 6 16:55:19 2007 @@ -50,7 +50,7 @@ * Inherited from YWidget: Sets the enabled state of the * widget. Disabling a progress bar makes it grey */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQRadioButton.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQRadioBu... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQRadioButton.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQRadioButton.cc Wed Jun 6 16:55:19 2007 @@ -104,7 +104,7 @@ } -void YQRadioButton::setEnabling( bool enabled ) +void YQRadioButton::setEnabled( bool enabled ) { _qt_radiobutton->setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQRadioButton.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQRadioBu... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQRadioButton.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQRadioButton.h Wed Jun 6 16:55:19 2007 @@ -63,7 +63,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQRadioButtonGroup.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQRadioBu... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQRadioButtonGroup.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQRadioButtonGroup.cc Wed Jun 6 16:55:19 2007 @@ -66,7 +66,7 @@ } -void YQRadioButtonGroup::setEnabling( bool enabled ) +void YQRadioButtonGroup::setEnabled( bool enabled ) { QWidget::setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQRadioButtonGroup.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQRadioBu... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQRadioButtonGroup.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQRadioButtonGroup.h Wed Jun 6 16:55:19 2007 @@ -61,7 +61,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Resize this widget Modified: branches/tmp/sh/mod-ui/qt/src/YQReplacePoint.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQReplace... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQReplacePoint.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQReplacePoint.cc Wed Jun 6 16:55:19 2007 @@ -40,7 +40,7 @@ } -void YQReplacePoint::setEnabling( bool enabled ) +void YQReplacePoint::setEnabled( bool enabled ) { QWidget::setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQReplacePoint.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQReplace... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQReplacePoint.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQReplacePoint.h Wed Jun 6 16:55:19 2007 @@ -50,7 +50,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Sets the size Modified: branches/tmp/sh/mod-ui/qt/src/YQRichText.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQRichTex... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQRichText.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQRichText.cc Wed Jun 6 16:55:19 2007 @@ -83,7 +83,7 @@ } -void YQRichText::setEnabling( bool enabled ) +void YQRichText::setEnabled( bool enabled ) { _textBrowser->setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQRichText.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQRichTex... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQRichText.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQRichText.h Wed Jun 6 16:55:19 2007 @@ -47,7 +47,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQSelectionBox.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQSelecti... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQSelectionBox.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQSelectionBox.cc Wed Jun 6 16:55:19 2007 @@ -129,7 +129,7 @@ } -void YQSelectionBox::setEnabling( bool enabled ) +void YQSelectionBox::setEnabled( bool enabled ) { _qt_label->setEnabled( enabled ); _qt_listbox->setEnabled( enabled ); Modified: branches/tmp/sh/mod-ui/qt/src/YQSelectionBox.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQSelecti... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQSelectionBox.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQSelectionBox.h Wed Jun 6 16:55:19 2007 @@ -46,7 +46,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQSlider.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQSlider.... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQSlider.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQSlider.cc Wed Jun 6 16:55:19 2007 @@ -75,7 +75,7 @@ } -void YQSlider::setEnabling( bool enabled ) +void YQSlider::setEnabled( bool enabled ) { _qt_label->setEnabled ( enabled ); _qt_slider->setEnabled ( enabled ); Modified: branches/tmp/sh/mod-ui/qt/src/YQSlider.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQSlider.... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQSlider.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQSlider.h Wed Jun 6 16:55:19 2007 @@ -55,7 +55,7 @@ * Sets the widget's enabled state. * Inherited from YWidget. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Preferred size. Modified: branches/tmp/sh/mod-ui/qt/src/YQSplit.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQSplit.c... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQSplit.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQSplit.cc Wed Jun 6 16:55:19 2007 @@ -33,7 +33,7 @@ } -void YQSplit::setEnabling( bool enabled ) +void YQSplit::setEnabled( bool enabled ) { QWidget::setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQSplit.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQSplit.h... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQSplit.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQSplit.h Wed Jun 6 16:55:19 2007 @@ -43,7 +43,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Inherited from YWidget. Sets the new size of the widget. Modified: branches/tmp/sh/mod-ui/qt/src/YQSquash.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQSquash.... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQSquash.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQSquash.cc Wed Jun 6 16:55:19 2007 @@ -31,7 +31,7 @@ } -void YQSquash::setEnabling( bool enabled ) +void YQSquash::setEnabled( bool enabled ) { QWidget::setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQSquash.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQSquash.... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQSquash.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQSquash.h Wed Jun 6 16:55:19 2007 @@ -44,7 +44,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Sets the size Modified: branches/tmp/sh/mod-ui/qt/src/YQTable.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQTable.c... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQTable.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQTable.cc Wed Jun 6 16:55:19 2007 @@ -171,7 +171,7 @@ } -void YQTable::setEnabling( bool enabled ) +void YQTable::setEnabled( bool enabled ) { _qt_listview->setEnabled( enabled ); _qt_listview->triggerUpdate(); Modified: branches/tmp/sh/mod-ui/qt/src/YQTable.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQTable.h... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQTable.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQTable.h Wed Jun 6 16:55:19 2007 @@ -46,7 +46,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQTextEntry.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQTextEnt... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQTextEntry.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQTextEntry.cc Wed Jun 6 16:55:19 2007 @@ -105,7 +105,7 @@ } -void YQTextEntry::setEnabling( bool enabled ) +void YQTextEntry::setEnabled( bool enabled ) { _qt_lineEdit->setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQTextEntry.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQTextEnt... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQTextEntry.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQTextEntry.h Wed Jun 6 16:55:19 2007 @@ -96,7 +96,7 @@ * * Reimplemented from YWidget. **/ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQTime.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQTime.cc... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQTime.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQTime.cc Wed Jun 6 16:55:19 2007 @@ -64,7 +64,7 @@ } -void YQTime::setEnabling( bool enabled ) +void YQTime::setEnabled( bool enabled ) { setEnabled( enabled ); } Modified: branches/tmp/sh/mod-ui/qt/src/YQTime.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQTime.h?... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQTime.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQTime.h Wed Jun 6 16:55:19 2007 @@ -49,7 +49,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQTree.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQTree.cc... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQTree.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQTree.cc Wed Jun 6 16:55:19 2007 @@ -98,7 +98,7 @@ void -YQTree::setEnabling( bool enabled ) +YQTree::setEnabled( bool enabled ) { _qt_label->setEnabled( enabled ); _listView->setEnabled( enabled ); Modified: branches/tmp/sh/mod-ui/qt/src/YQTree.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQTree.h?... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQTree.h (original) +++ branches/tmp/sh/mod-ui/qt/src/YQTree.h Wed Jun 6 16:55:19 2007 @@ -50,7 +50,7 @@ * widget. All new widgets are enabled per definition. Only * enabled widgets can take user input. */ - void setEnabling( bool enabled ); + void setEnabled( bool enabled ); /** * Minimum size the widget should have to make it look and feel Modified: branches/tmp/sh/mod-ui/qt/src/YQWizard.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/qt/src/YQWizard.... ============================================================================== --- branches/tmp/sh/mod-ui/qt/src/YQWizard.cc (original) +++ branches/tmp/sh/mod-ui/qt/src/YQWizard.cc Wed Jun 6 16:55:19 2007 @@ -1811,7 +1811,7 @@ return; if ( button ) - button->setEnabling( enabled ); + button->setEnabled( enabled ); } -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
sh-sh-sh@svn.opensuse.org