[Scummvm-cvs-logs] CVS: scummvm/gui dialog.cpp,1.3,1.4 widget.cpp,1.3,1.4

Max Horn fingolfin at users.sourceforge.net
Sun Jul 7 10:50:03 CEST 2002


Update of /cvsroot/scummvm/scummvm/gui
In directory usw-pr-cvs1:/tmp/cvs-serv1294

Modified Files:
	dialog.cpp widget.cpp 
Log Message:
once more indent, after adding -TDialog and -TWidget

Index: dialog.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/gui/dialog.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- dialog.cpp	7 Jul 2002 13:14:34 -0000	1.3
+++ dialog.cpp	7 Jul 2002 17:49:25 -0000	1.4
@@ -115,8 +115,8 @@
 	kQuitCmd = 'QUIT'
 };
 
-SaveLoadDialog::SaveLoadDialog(NewGui * gui)
-:Dialog(gui, 30, 20, 260, 124)
+SaveLoadDialog::SaveLoadDialog(NewGui *gui)
+:Dialog (gui, 30, 20, 260, 124)
 {
 	addResText(10, 7, 240, 16, 1);
 //  addResText(10, 7, 240, 16, 2);
@@ -151,8 +151,8 @@
 #pragma mark -
 
 
-PauseDialog::PauseDialog(NewGui * gui)
-:Dialog(gui, 50, 80, 220, 16)
+PauseDialog::PauseDialog(NewGui *gui)
+:Dialog (gui, 50, 80, 220, 16)
 {
 	addResText(2, 2, 220, 16, 10);
 }

Index: widget.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/gui/widget.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- widget.cpp	7 Jul 2002 13:14:34 -0000	1.3
+++ widget.cpp	7 Jul 2002 17:49:25 -0000	1.4
@@ -24,8 +24,8 @@
 #include "newgui.h"
 
 
-Widget::Widget(Dialog * boss, int x, int y, int w, int h)
-:_boss(boss), _x(x), _y(y), _w(w), _h(h), _id(0), _flags(0)
+Widget::Widget (Dialog *boss, int x, int y, int w, int h)
+: _boss(boss), _x(x), _y(y), _w(w), _h(h), _id(0), _flags(0)
 {
 	// Insert into the widget list of the boss
 	_next = _boss->_firstWidget;
@@ -67,8 +67,8 @@
 #pragma mark -
 
 
-StaticTextWidget::StaticTextWidget(Dialog * boss, int x, int y, int w, int h, const char *text)
-:Widget(boss, x, y, w, h)
+StaticTextWidget::StaticTextWidget(Dialog *boss, int x, int y, int w, int h, const char *text)
+:Widget (boss, x, y, w, h)
 {
 	// FIXME - maybe we should make a real copy of the string?
 	_text = text;
@@ -84,7 +84,7 @@
 #pragma mark -
 
 
-ButtonWidget::ButtonWidget(Dialog * boss, int x, int y, int w, int h, const char *label, uint32 cmd)
+ButtonWidget::ButtonWidget(Dialog *boss, int x, int y, int w, int h, const char *label, uint32 cmd)
 :StaticTextWidget(boss, x, y, w, h, label), _cmd(cmd), _hotkey(0)
 {
 	_flags = WIDGET_ENABLED | WIDGET_BORDER /* | WIDGET_CLEARBG */ ;





More information about the Scummvm-git-logs mailing list