Browse Source

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 years ago
parent
commit
01dd7af4d2
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      vncviewer/DesktopWindow.h

+ 3
- 3
vncviewer/DesktopWindow.h View File

@@ -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();


Loading…
Cancel
Save