summaryrefslogtreecommitdiffstats
path: root/tksao/frame/basecommand.C
diff options
context:
space:
mode:
Diffstat (limited to 'tksao/frame/basecommand.C')
-rw-r--r--tksao/frame/basecommand.C6
1 files changed, 3 insertions, 3 deletions
diff --git a/tksao/frame/basecommand.C b/tksao/frame/basecommand.C
index 7f5615a..ed7734f 100644
--- a/tksao/frame/basecommand.C
+++ b/tksao/frame/basecommand.C
@@ -1310,12 +1310,12 @@ void Base::getContourClipScopeCmd()
void Base::getContourColorNameCmd()
{
- Tcl_AppendResult(interp, currentContext->fvcontour().getColorName(), NULL);
+ Tcl_AppendResult(interp, currentContext->fvcontour().colorName(), NULL);
}
void Base::getContourDashCmd()
{
- if (currentContext->fvcontour().getDash())
+ if (currentContext->fvcontour().dash())
Tcl_AppendResult(interp, "1", NULL);
else
Tcl_AppendResult(interp, "0", NULL);
@@ -1329,7 +1329,7 @@ void Base::getContourLevelCmd()
void Base::getContourLineWidthCmd()
{
ostringstream str;
- str << currentContext->fvcontour().getLineWidth() << ends;
+ str << currentContext->fvcontour().lineWidth() << ends;
Tcl_AppendResult(interp, str.str().c_str(), NULL);
}