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



// Fl_Window callback methods // Fl_Window callback methods
virtual void show(); 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(); void fullscreen_on();



Loading…
Cancel
Save