|
From: <edu...@us...> - 2003-10-19 17:22:51
|
Update of /cvsroot/aedgui/aedGUI/test
In directory sc8-pr-cvs1:/tmp/cvs-serv12555
Modified Files:
main.cpp
Log Message:
Added another button just for testing.
Index: main.cpp
===================================================================
RCS file: /cvsroot/aedgui/aedGUI/test/main.cpp,v
retrieving revision 1.46
retrieving revision 1.47
diff -C2 -d -r1.46 -r1.47
*** main.cpp 19 Oct 2003 16:47:11 -0000 1.46
--- main.cpp 19 Oct 2003 16:50:08 -0000 1.47
***************
*** 146,150 ****
--- 146,156 ----
tb1.setAlphaValue(160);
+ tb2 = new aedButton;
+ tb2->create(&frame2, aedRect(25, 50, 140, 34),
+ "parent is staticImage");
+ tb2->setAlphaValue(160);
+
boxSizer.addWidget(&tb1);
+ boxSizer.addWidget(tb2);
|