浏览代码

Properly mark overloaded methods with virtual

Makes it easier to see what is overloaded and what isn't.
tags/v1.9.90
Pierre Ossman 4 年前
父节点
当前提交
01dd7af4d2
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3
    3
      vncviewer/DesktopWindow.h

+ 3
- 3
vncviewer/DesktopWindow.h 查看文件

@@ -74,10 +74,10 @@ public:

// Fl_Window callback methods
virtual void show();
void draw();
void resize(int x, int y, int w, int h);
virtual void draw();
virtual void resize(int x, int y, int w, int h);

int handle(int event);
virtual int handle(int event);

void fullscreen_on();


正在加载...
取消
保存