mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
GLK: Remove more Window methods that aren't actually present
This commit is contained in:
committed by
Paul Gilbert
parent
ede0323c08
commit
cb2b7d439f
@@ -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
|
||||
}
|
||||
|
||||
@@ -142,16 +142,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
|
||||
*/
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -114,16 +114,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
|
||||
*/
|
||||
|
||||
@@ -320,16 +320,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
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user