aboutsummaryrefslogtreecommitdiffstats
path: root/vncviewer/MonitorIndicesParameter.h
diff options
context:
space:
mode:
Diffstat (limited to 'vncviewer/MonitorIndicesParameter.h')
-rw-r--r--vncviewer/MonitorIndicesParameter.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vncviewer/MonitorIndicesParameter.h b/vncviewer/MonitorIndicesParameter.h
index 58e55e43..d91c84fe 100644
--- a/vncviewer/MonitorIndicesParameter.h
+++ b/vncviewer/MonitorIndicesParameter.h
@@ -29,15 +29,15 @@ public:
MonitorIndicesParameter(const char* name_, const char* desc_, const char* v);
std::set<int> getParam();
bool setParam(std::set<int> indices);
- bool setParam(const char* value);
+ bool setParam(const char* v) override;
private:
typedef struct {
int x, y, w, h;
int fltkIndex;
} Monitor;
- bool parseIndices(const char* value, std::set<int> *indices,
- bool complain=false);
+ static bool parseIndices(const char* value, std::set<int> *indices,
+ bool complain=false);
std::vector<MonitorIndicesParameter::Monitor> fetchMonitors();
static int compare(const void*, const void*);
};