drawChar is abstract

This commit is contained in:
Denis Feklushkin 2017-10-20 06:35:45 +07:00
parent fe53b78ba3
commit 0ab9eb8821
1 changed files with 1 additions and 1 deletions

View File

@ -633,7 +633,7 @@ static if (WIDGET_STYLE_CONSOLE) {
abstract class ConsoleDrawBuf : DrawBuf
{
void drawChar(int x, int y, dchar ch, uint color, uint bgcolor);
abstract void drawChar(int x, int y, dchar ch, uint color, uint bgcolor);
}
class TextDrawable : Drawable {