[yast-commit] r39885 - /branches/tmp/sh/mod-ui/ncurses/src/NCWidgetFactory.cc
Author: gs Date: Thu Aug 2 11:00:20 2007 New Revision: 39885 URL: http://svn.opensuse.org/viewcvs/yast?rev=39885&view=rev Log: add createTree() Modified: branches/tmp/sh/mod-ui/ncurses/src/NCWidgetFactory.cc Modified: branches/tmp/sh/mod-ui/ncurses/src/NCWidgetFactory.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/ncurses/src/NCWidgetFactory.cc?rev=39885&r1=39884&r2=39885&view=diff ============================================================================== --- branches/tmp/sh/mod-ui/ncurses/src/NCWidgetFactory.cc (original) +++ branches/tmp/sh/mod-ui/ncurses/src/NCWidgetFactory.cc Thu Aug 2 11:00:20 2007 @@ -156,7 +156,10 @@ NCTree * NCWidgetFactory::createTree( YWidget * parent, const string & label ) { - return 0; // FIXME: TO DO + NCTree * tree = new NCTree( parent, label ); + YUI_CHECK_NEW( tree ); + + return tree; } -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
gs@svn.opensuse.org