Mailinglist Archive: yast-commit (815 mails)
| < Previous | Next > |
[yast-commit] r39885 - /branches/tmp/sh/mod-ui/ncurses/src/NCWidgetFactory.cc
- From: gs@xxxxxxxxxxxxxxxx
- Date: Thu, 02 Aug 2007 09:00:20 -0000
- Message-id: <20070802090021.4B9BDB5873@xxxxxxxxxxxxxxxx>
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@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
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@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |