Browse Source

Don't reference specific variable in class

This class is generic and should not reference a specific instance of
it.
tags/v1.11.90
Pierre Ossman 2 years ago
parent
commit
3ad5532e83
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      vncviewer/MonitorIndicesParameter.cxx

+ 3
- 3
vncviewer/MonitorIndicesParameter.cxx View File

@@ -75,7 +75,7 @@ bool MonitorIndicesParameter::setParam(const char* value)
return false;

if (!parseIndices(value, &indices)) {
vlog.error(_("Invalid FullScreenSelectedMonitors configuration"));
vlog.error(_("Invalid configuration specified for %s"), name);
return false;
}

@@ -162,13 +162,13 @@ bool MonitorIndicesParameter::parseIndices(const char* value, std::set<int> *ind
current.push_back(d);
else if (d == ',') {
if (!parseNumber(current, indices)) {
vlog.error(_("Invalid monitor index '%s' in FullScreenSelectedMonitors"), current.c_str());
vlog.error(_("Invalid monitor index '%s'"), current.c_str());
return false;
}

current.clear();
} else {
vlog.error(_("Unexpected character '%c' in FullScreenSelectedMonitors"), d);
vlog.error(_("Unexpected character '%c'"), d);
return false;
}
}

Loading…
Cancel
Save