return values

This commit is contained in:
fluxgen 2004-06-07 22:18:21 +00:00
parent bdcf645eba
commit 4fdb621efd

View file

@ -174,6 +174,7 @@ std::string FbTk::Resource<FbTk::GContext::LineStyle>::getString() {
return "LineDoubleDash"; return "LineDoubleDash";
break; break;
}; };
return "LineSolid";
} }
template<> template<>
@ -208,6 +209,7 @@ std::string FbTk::Resource<FbTk::GContext::JoinStyle>::getString() {
return "JoinRound"; return "JoinRound";
break; break;
}; };
return "JoinMiter";
} }
template<> template<>
@ -245,6 +247,7 @@ std::string FbTk::Resource<FbTk::GContext::CapStyle>::getString() {
return "CapProjecting"; return "CapProjecting";
break; break;
}; };
return "CapNotLast";
} }
template<> template<>