[yast-commit] r40723 - /trunk/ntp-client/src/dialogs.ycp
Author: kmachalkova Date: Mon Sep 3 16:41:34 2007 New Revision: 40723 URL: http://svn.opensuse.org/viewcvs/yast?rev=40723&view=rev Log: Replace Finish button with Accept in installation proposal Modified: trunk/ntp-client/src/dialogs.ycp Modified: trunk/ntp-client/src/dialogs.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/ntp-client/src/dialogs.ycp?rev=40723&r1=40722&r2=40723&view=diff ============================================================================== --- trunk/ntp-client/src/dialogs.ycp (original) +++ trunk/ntp-client/src/dialogs.ycp Mon Sep 3 16:41:34 2007 @@ -123,7 +123,8 @@ string help = CWM::MergeHelps (w); contents = CWM::PrepareDialog (contents, w); Wizard::SetContentsButtons (caption, contents, help, - Label::BackButton (), Label::FinishButton ()); + Label::BackButton (), + Stage::initial()? Label::AcceptButton() : Label::FinishButton ()); Wizard::HideBackButton(); Wizard::SetAbortButton(`abort, Label::CancelButton() ); @@ -213,7 +214,8 @@ string help = CWM::MergeHelps (w); contents = CWM::PrepareDialog (contents, w); Wizard::SetContentsButtons (caption, contents, help, - Label::BackButton (), Label::FinishButton ()); + Label::BackButton (), + Stage::initial()? Label::AcceptButton() : Label::FinishButton ()); Wizard::HideBackButton(); Wizard::SetAbortButton(`abort, Label::CancelButton() ); -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
kmachalkova@svn.opensuse.org