diff options
author | Max Horn | 2009-03-24 12:46:48 +0000 |
---|---|---|
committer | Max Horn | 2009-03-24 12:46:48 +0000 |
commit | b76f7fea4eee59eb88d8028120bb1cae780f1c00 (patch) | |
tree | 0174fb28d19ebacc2e6d75cd31cd3c76e7e1df50 /engines/sci/gfx/sci_widgets.h | |
parent | 33895c0220c114653ee77a347452f03e8b8654f7 (diff) | |
download | scummvm-rg350-b76f7fea4eee59eb88d8028120bb1cae780f1c00.tar.gz scummvm-rg350-b76f7fea4eee59eb88d8028120bb1cae780f1c00.tar.bz2 scummvm-rg350-b76f7fea4eee59eb88d8028120bb1cae780f1c00.zip |
SCI: Changed some char* into Common::String
svn-id: r39663
Diffstat (limited to 'engines/sci/gfx/sci_widgets.h')
-rw-r--r-- | engines/sci/gfx/sci_widgets.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/gfx/sci_widgets.h b/engines/sci/gfx/sci_widgets.h index 62749d9ce4..b47e7120a1 100644 --- a/engines/sci/gfx/sci_widgets.h +++ b/engines/sci/gfx/sci_widgets.h @@ -62,7 +62,7 @@ class Menu; /* Used by the interpreter to flag buttons that are enabled */ #define CONTROL_STATE_ENABLED 0x0001 -void sciw_set_status_bar(EngineState *s, gfxw_port_t *status_bar, const char *text, int fgcolor, int bgcolor); +void sciw_set_status_bar(EngineState *s, gfxw_port_t *status_bar, const Common::String &text, int fgcolor, int bgcolor); /* Sets the contents of a port used as status bar ** Parmeters: (EngineState *) s: The affected game state ** (gfxw_port_t *) status_bar: The status bar port |