[Scummvm-cvs-logs] scummvm master -> 0389bd0c4b10e8286b6c2e52c726bfc370487ae5

sev- sev at scummvm.org
Thu Mar 17 16:48:13 CET 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
0389bd0c4b HUGO: Fix compilation


Commit: 0389bd0c4b10e8286b6c2e52c726bfc370487ae5
    https://github.com/scummvm/scummvm/commit/0389bd0c4b10e8286b6c2e52c726bfc370487ae5
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2011-03-17T08:46:38-07:00

Commit Message:
HUGO: Fix compilation

Changed paths:
    engines/hugo/dialogs.cpp
    engines/hugo/dialogs.h



diff --git a/engines/hugo/dialogs.cpp b/engines/hugo/dialogs.cpp
index 5907012..ead432c 100644
--- a/engines/hugo/dialogs.cpp
+++ b/engines/hugo/dialogs.cpp
@@ -239,6 +239,9 @@ EntryDialog::EntryDialog(const Common::String &title, const Common::String &butt
 	new GUI::ButtonWidget(this, 20, 20, 30, 10, buttonLabel, 0, kCmdButton);
 }
 
+EntryDialog::~EntryDialog() {
+}
+
 void EntryDialog::handleCommand(GUI::CommandSender *sender, uint32 command, uint32 data) {
 	switch (command) {
 	case kCmdButton:
@@ -249,5 +252,11 @@ void EntryDialog::handleCommand(GUI::CommandSender *sender, uint32 command, uint
 	}
 }
 
+void EntryDialog::reflowLayout() {
+}
+
+void EntryDialog::init() {
+}
+
 
 } // End of namespace Hugo
diff --git a/engines/hugo/dialogs.h b/engines/hugo/dialogs.h
index ce53dab..1ef196a 100644
--- a/engines/hugo/dialogs.h
+++ b/engines/hugo/dialogs.h
@@ -102,7 +102,7 @@ protected:
 
 class EntryDialog : public GUI::Dialog {
 	EntryDialog(const Common::String &title, const Common::String &buttonLabel, const Common::String &defaultValue);
-	~EntryDialog();
+	virtual ~EntryDialog();
 
 	void reflowLayout();
 	void handleCommand(GUI::CommandSender *sender, uint32 command, uint32 data);






More information about the Scummvm-git-logs mailing list