| 63 | { |
| 64 | public: |
| 65 | UserPrefString(std::string name, std::string defaultValue, int charWidth, UserPrefCategory category) |
| 66 | : mValue(defaultValue) |
| 67 | , mDefault(defaultValue) |
| 68 | , mCharWidth(charWidth) |
| 69 | { |
| 70 | RegisterUserPref(this); |
| 71 | mName = name; |
| 72 | mCategory = category; |
| 73 | } |
| 74 | void Init() override; |
| 75 | void SetUpControl(IDrawableModule* owner) override; |
| 76 | IUIControl* GetControl() override; |
nothing calls this directly
no test coverage detected