mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
ScatterCtrl: Fixed << ambiguity issues
git-svn-id: svn://ultimatepp.org/upp/trunk@9926 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
0a61d7e290
commit
5f65ade1f1
2 changed files with 3 additions and 3 deletions
|
|
@ -101,8 +101,8 @@ void TextsTab::Change()
|
|||
{
|
||||
ScatterCtrl &scatter = *pscatter;
|
||||
|
||||
scatter.SetTitle(title);
|
||||
scatter.SetLabels(xLabel, yLabel, yLabel2);
|
||||
scatter.SetTitle(~title);
|
||||
scatter.SetLabels(~xLabel, ~yLabel, ~yLabel2);
|
||||
scatter.SetPlotAreaMargin(~leftMargin, ~rightMargin, ~topMargin, ~bottomMargin);
|
||||
|
||||
scatter.SetModify();
|
||||
|
|
|
|||
|
|
@ -301,7 +301,7 @@ public:
|
|||
eval.SetVariable(i, coeff[i]);
|
||||
return eval.Eval(strEquation);
|
||||
}
|
||||
String SetName(String _name) {name = _name;}
|
||||
void SetName(String _name) {name = _name;}
|
||||
virtual String GetName() {return name;}
|
||||
virtual String GetEquation(int numDigits = 3) {return eval.EvalStr(strEquation, numDigits);}
|
||||
virtual void GuessCoeff(DataSource &series) {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue