diff options
author | Paul Gilbert | 2018-10-22 18:53:09 -0700 |
---|---|---|
committer | Paul Gilbert | 2018-12-08 19:05:59 -0800 |
commit | cb2b7d439fb9cb89f2758d103ba2ea710e4f0a72 (patch) | |
tree | e76203b1073ffd9211b4965258aec262b6644bdb | |
parent | ede0323c08fc7d5853736d42c7f5910c18ff1fd1 (diff) | |
download | scummvm-rg350-cb2b7d439fb9cb89f2758d103ba2ea710e4f0a72.tar.gz scummvm-rg350-cb2b7d439fb9cb89f2758d103ba2ea710e4f0a72.tar.bz2 scummvm-rg350-cb2b7d439fb9cb89f2758d103ba2ea710e4f0a72.zip |
GLK: Remove more Window methods that aren't actually present
-rw-r--r-- | engines/gargoyle/window_text_buffer.cpp | 8 | ||||
-rw-r--r-- | engines/gargoyle/window_text_buffer.h | 10 | ||||
-rw-r--r-- | engines/gargoyle/window_text_grid.cpp | 8 | ||||
-rw-r--r-- | engines/gargoyle/window_text_grid.h | 10 | ||||
-rw-r--r-- | engines/gargoyle/windows.h | 10 |
5 files changed, 0 insertions, 46 deletions
diff --git a/engines/gargoyle/window_text_buffer.cpp b/engines/gargoyle/window_text_buffer.cpp index 9b1268e218..b916fc4b5c 100644 --- a/engines/gargoyle/window_text_buffer.cpp +++ b/engines/gargoyle/window_text_buffer.cpp @@ -432,14 +432,6 @@ bool TextBufferWindow::unputCharUni(uint32 ch) { return false; } -void TextBufferWindow::putBuffer(const unsigned char *buf, size_t len) { - // TODO -} - -void TextBufferWindow::putBufferUni(const uint32 *buf, size_t len) { - // TODO -} - void TextBufferWindow::moveCursor(const Common::Point &newPos) { // TODO } diff --git a/engines/gargoyle/window_text_buffer.h b/engines/gargoyle/window_text_buffer.h index 0e6ee2cec9..ebba2b4502 100644 --- a/engines/gargoyle/window_text_buffer.h +++ b/engines/gargoyle/window_text_buffer.h @@ -143,16 +143,6 @@ public: virtual bool unputCharUni(uint32 ch) override; /** - * Write a buffer - */ - virtual void putBuffer(const unsigned char *buf, size_t len) override; - - /** - * Write a unicode character - */ - virtual void putBufferUni(const uint32 *buf, size_t len) override; - - /** * Move the cursor */ virtual void moveCursor(const Common::Point &newPos) override; diff --git a/engines/gargoyle/window_text_grid.cpp b/engines/gargoyle/window_text_grid.cpp index 92bdcf5d22..17bb2221c8 100644 --- a/engines/gargoyle/window_text_grid.cpp +++ b/engines/gargoyle/window_text_grid.cpp @@ -159,14 +159,6 @@ bool TextGridWindow::unputCharUni(uint32 ch) { } } -void TextGridWindow::putBuffer(const unsigned char *buf, size_t len) { - // TODO -} - -void TextGridWindow::putBufferUni(const uint32 *buf, size_t len) { - // TODO -} - void TextGridWindow::moveCursor(const Common::Point &pos) { // If the values are negative, they're really huge positive numbers -- // remember that they were cast from glui32. So set them huge and diff --git a/engines/gargoyle/window_text_grid.h b/engines/gargoyle/window_text_grid.h index 8ebaf82b7f..0cf6d5e774 100644 --- a/engines/gargoyle/window_text_grid.h +++ b/engines/gargoyle/window_text_grid.h @@ -115,16 +115,6 @@ public: virtual bool unputCharUni(uint32 ch) override; /** - * Write a buffer - */ - virtual void putBuffer(const unsigned char *buf, size_t len) override; - - /** - * Write a unicode character - */ - virtual void putBufferUni(const uint32 *buf, size_t len) override; - - /** * Move the cursor */ virtual void moveCursor(const Common::Point &newPos) override; diff --git a/engines/gargoyle/windows.h b/engines/gargoyle/windows.h index 60f6bb4445..5e6374c340 100644 --- a/engines/gargoyle/windows.h +++ b/engines/gargoyle/windows.h @@ -321,16 +321,6 @@ public: virtual bool unputCharUni(uint32 ch) { return false; } /** - * Write a buffer - */ - virtual void putBuffer(const unsigned char *buf, size_t len) {} - - /** - * Write a unicode character - */ - virtual void putBufferUni(const uint32 *buf, size_t len) {} - - /** * Move the cursor */ virtual void moveCursor(const Common::Point &newPos) {} |