* Generic spacer widget. * @param width Horizontal size of the spacer widget. * @param height Vertical size of the spacer widget. */
| 1916 | * @param height Vertical size of the spacer widget. |
| 1917 | */ |
| 1918 | NWidgetSpacer::NWidgetSpacer(int width, int height) : NWidgetResizeBase(NWID_SPACER, INVALID_WIDGET, 0, 0) |
| 1919 | { |
| 1920 | this->SetMinimalSize(width, height); |
| 1921 | this->SetResize(0, 0); |
| 1922 | } |
| 1923 | |
| 1924 | void NWidgetSpacer::SetupSmallestSize(Window *) |
| 1925 | { |
nothing calls this directly
no test coverage detected