renamed namespace ScummVM to Common
svn-id: r10544
This commit is contained in:
parent
f26d3d1784
commit
0e645f88ae
58 changed files with 143 additions and 142 deletions
|
@ -279,11 +279,11 @@ Widget *Dialog::findWidget(int x, int y) {
|
|||
return w;
|
||||
}
|
||||
|
||||
ButtonWidget *Dialog::addButton(int x, int y, const ScummVM::String &label, uint32 cmd, char hotkey) {
|
||||
ButtonWidget *Dialog::addButton(int x, int y, const Common::String &label, uint32 cmd, char hotkey) {
|
||||
return new ButtonWidget(this, x, y, kButtonWidth, 16, label, cmd, hotkey);
|
||||
}
|
||||
|
||||
PushButtonWidget *Dialog::addPushButton(int x, int y, const ScummVM::String &label, uint32 cmd, char hotkey) {
|
||||
PushButtonWidget *Dialog::addPushButton(int x, int y, const Common::String &label, uint32 cmd, char hotkey) {
|
||||
return new PushButtonWidget(this, x, y, kButtonWidth, 16, label, cmd, hotkey);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue