diff options
| author | Max Horn | 2010-11-01 16:03:02 +0000 | 
|---|---|---|
| committer | Max Horn | 2010-11-01 16:03:02 +0000 | 
| commit | 2af270442144faec859114bcdce7e5659ac7f24b (patch) | |
| tree | b65ce8a6e22beb2de13874a1265b810ed9bcee2c /gui/console.h | |
| parent | 06876671e51df44a5f28ea2c2798d7607b4f2d43 (diff) | |
| download | scummvm-rg350-2af270442144faec859114bcdce7e5659ac7f24b.tar.gz scummvm-rg350-2af270442144faec859114bcdce7e5659ac7f24b.tar.bz2 scummvm-rg350-2af270442144faec859114bcdce7e5659ac7f24b.zip | |
GUI: Rename ConsolDialog methods (v)printf, putchar
svn-id: r54006
Diffstat (limited to 'gui/console.h')
| -rw-r--r-- | gui/console.h | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/gui/console.h b/gui/console.h index bf44bdbe17..52762b065f 100644 --- a/gui/console.h +++ b/gui/console.h @@ -143,10 +143,10 @@ public:  	void handleKeyDown(Common::KeyState state);  	void handleCommand(CommandSender *sender, uint32 cmd, uint32 data); -	int printf(const char *format, ...) GCC_PRINTF(2, 3); -	int vprintf(const char *format, va_list argptr); -#undef putchar -	void putchar(int c); +	int printFormat(int dummy, const char *format, ...) GCC_PRINTF(3, 4); +	int vprintFormat(int dummy, const char *format, va_list argptr); + +	void printChar(int c);  	void setInputCallback(InputCallbackProc proc, void *refCon) {  		_callbackProc = proc; @@ -172,7 +172,7 @@ protected:  	void drawLine(int line, bool restoreBg = true);  	void drawCaret(bool erase); -	void putcharIntern(int c); +	void printCharIntern(int c);  	void insertIntoPrompt(const char *str);  	void print(const char *str);  	void updateScrollBuffer(); | 
