Prefix display qualifier for a region. Eg, "/solid/". Empty for default region.
| 890 | |
| 891 | // Prefix display qualifier for a region. Eg, "/solid/". Empty for default region. |
| 892 | std::string RegionPrefix() const |
| 893 | { |
| 894 | if (this->RegionName.empty()) |
| 895 | { |
| 896 | return ""; |
| 897 | } |
| 898 | return ("/" + this->RegionName + "/"); |
| 899 | } |
| 900 | |
| 901 | // Test if display (selection) name matches the current region. |
| 902 | // See RegionPrefix() comments |
no test coverage detected