| 121 | { |
| 122 | public: |
| 123 | UserPrefDropdownString(std::string name, std::string defaultValue, int width, UserPrefCategory category) |
| 124 | : mValue(defaultValue) |
| 125 | , mDefault(defaultValue) |
| 126 | , mWidth(width) |
| 127 | { |
| 128 | RegisterUserPref(this); |
| 129 | mName = name; |
| 130 | mCategory = category; |
| 131 | } |
| 132 | void Init() override; |
| 133 | void SetUpControl(IDrawableModule* owner) override; |
| 134 | IUIControl* GetControl() override; |
nothing calls this directly
no test coverage detected