[yast-commit] r41106 - in /branches/tmp/sh/mod-ui/ncurses/src: NCSpacing.cc NCSpacing.h
Author: gs Date: Wed Sep 26 13:06:10 2007 New Revision: 41106 URL: http://svn.opensuse.org/viewcvs/yast?rev=41106&view=rev Log: correct params Modified: branches/tmp/sh/mod-ui/ncurses/src/NCSpacing.cc branches/tmp/sh/mod-ui/ncurses/src/NCSpacing.h Modified: branches/tmp/sh/mod-ui/ncurses/src/NCSpacing.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/ncurses/src/NCSpacing.cc?rev=41106&r1=41105&r2=41106&view=diff ============================================================================== --- branches/tmp/sh/mod-ui/ncurses/src/NCSpacing.cc (original) +++ branches/tmp/sh/mod-ui/ncurses/src/NCSpacing.cc Wed Sep 26 13:06:10 2007 @@ -32,7 +32,7 @@ YUIDimension dim, bool stretchable, YLayoutSize_t layoutUnits ) - : YSpacing( parent, dim, stretchable ) + : YSpacing( parent, dim, stretchable, layoutUnits ) , NCWidget( parent ) { WIDDBG << endl; @@ -85,6 +85,7 @@ // void NCSpacing::setSize( int newwidth, int newheight ) { + NCMIL << "setSize called w: " << newwidth << " h: " << newheight << endl; wRelocate( wpos( 0 ), wsze( newheight, newwidth ) ); } Modified: branches/tmp/sh/mod-ui/ncurses/src/NCSpacing.h URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/ncurses/src/NCSpacing.h?rev=41106&r1=41105&r2=41106&view=diff ============================================================================== --- branches/tmp/sh/mod-ui/ncurses/src/NCSpacing.h (original) +++ branches/tmp/sh/mod-ui/ncurses/src/NCSpacing.h Wed Sep 26 13:06:10 2007 @@ -50,7 +50,7 @@ public: NCSpacing( YWidget * parent, YUIDimension dim, - bool stretchable, YLayoutSize_t layoutUnits ); + bool stretchable = false, YLayoutSize_t layoutUnits = 0.0 ); virtual ~NCSpacing(); -- 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