[yast-commit] r39200 - /trunk/kerberos-server/src/complex.ycp
Author: mcalmer Date: Fri Jul 6 13:25:32 2007 New Revision: 39200 URL: http://svn.opensuse.org/viewcvs/yast?rev=39200&view=rev Log: removed unused code Modified: trunk/kerberos-server/src/complex.ycp Modified: trunk/kerberos-server/src/complex.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/kerberos-server/src/complex.ycp?rev=39200&r1=39199&r2=39200&view=diff ============================================================================== --- trunk/kerberos-server/src/complex.ycp (original) +++ trunk/kerberos-server/src/complex.ycp Fri Jul 6 13:25:32 2007 @@ -532,8 +532,7 @@ `VSpacing(0.5), `VBox ( `ReplacePoint(`id(`replace), - `RichText(`id(`id_advanced_d), "")), - `VStretch() + `RichText(`id(`id_advanced_d), "")) ) ) ) @@ -549,9 +548,9 @@ symbol ret = `dummy; - while (ret != `back - && ret != `abort - && ret != `next) + while (ret != `back && + ret != `abort && + ret != `next) { ret = (symbol) UI::UserInput (); @@ -588,28 +587,7 @@ } else { - if (ret == `help) - { - UI::OpenDialog (`opt(`decorated ), - `HBox( `VSpacing(16), - `VBox ( - `HSpacing (60), - // popup window header - `Heading (_("Help")), - `VSpacing (0.5), - `RichText (""), - `VSpacing (1.5), - // push button label - `PushButton (`id(`ok), `opt(`default, `key_F10), Label::OKButton()) - ) - ) - ); - - UI::SetFocus (`id(`ok)); - UI::UserInput (); - UI::CloseDialog (); - } - else if (ret == `add) + if (ret == `add) { symbol selected = (symbol)UI::QueryWidget(`id(`tree), `CurrentItem); y2milestone ("Add for: %1", selected); -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
mcalmer@svn.opensuse.org