[Scummvm-git-logs] scummvm master -> b989c490180b2436fab0277362476e2a74569171
sev-
noreply at scummvm.org
Mon Oct 17 14:09:16 UTC 2022
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:
b989c49018 JANITORIAL: Indentation fixes
Commit: b989c490180b2436fab0277362476e2a74569171
https://github.com/scummvm/scummvm/commit/b989c490180b2436fab0277362476e2a74569171
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2022-10-17T16:08:58+02:00
Commit Message:
JANITORIAL: Indentation fixes
Changed paths:
engines/director/lingo/xlibs/widgetxobj.cpp
diff --git a/engines/director/lingo/xlibs/widgetxobj.cpp b/engines/director/lingo/xlibs/widgetxobj.cpp
index 343e5280470..251ff40e602 100644
--- a/engines/director/lingo/xlibs/widgetxobj.cpp
+++ b/engines/director/lingo/xlibs/widgetxobj.cpp
@@ -19,15 +19,15 @@
*
*/
-/*
+/*
* Widget External Factory
* Used in: "Alice: An Interactive Museum"
- *
+ *
* Widget
* I mNew --Creates a new instance of the XObject
* X mDispose --Disposes of XObject instance
- * S mGetPro --
- * I mAskQuit --
+ * S mGetPro --
+ * I mAskQuit --
*
*/
@@ -41,15 +41,15 @@ namespace Director {
const char *WidgetXObj::xlibName = "widget";
const char *WidgetXObj::fileNames[] = {
- "widget",
- nullptr
+ "widget",
+ nullptr
};
static MethodProto xlibMethods[] = {
{ "new", WidgetXObj::m_new, 0, 0, 400 }, // D4
- { "Dispose", WidgetXObj::m_dispose, 0, 0, 400 }, // D4
- { "GetPro", WidgetXObj::m_getPro, 0, 0, 400 }, // D4
- { "AskQuit", WidgetXObj::m_askQuit, 0, 0, 400 }, // D4
+ { "Dispose", WidgetXObj::m_dispose, 0, 0, 400 }, // D4
+ { "GetPro", WidgetXObj::m_getPro, 0, 0, 400 }, // D4
+ { "AskQuit", WidgetXObj::m_askQuit, 0, 0, 400 }, // D4
{ nullptr, nullptr, 0, 0, 0 }
};
@@ -78,17 +78,17 @@ void WidgetXObj::m_new(int nargs) {
void WidgetXObj::m_dispose(int nargs) {
g_lingo->printSTUBWithArglist("WidgetXObj::m_dispose", nargs);
- g_lingo->dropStack(nargs);
+ g_lingo->dropStack(nargs);
}
void WidgetXObj::m_getPro(int nargs) {
- // seems to want a disk drive letter
- g_lingo->push(Datum("D"));
+ // seems to want a disk drive letter
+ g_lingo->push(Datum("D"));
}
void WidgetXObj::m_askQuit(int nargs) {
g_lingo->printSTUBWithArglist("WidgetXObj::m_askQuit", nargs);
- g_lingo->dropStack(nargs);
+ g_lingo->dropStack(nargs);
}
}
More information about the Scummvm-git-logs
mailing list