* Set the filling of the widget from initial size. * @param fill_x Horizontal fill step size, \c 0 means no filling is allowed. * @param fill_y Vertical fill step size, \c 0 means no filling is allowed. */
| 1088 | * @param fill_y Vertical fill step size, \c 0 means no filling is allowed. |
| 1089 | */ |
| 1090 | void NWidgetResizeBase::SetFill(uint fill_x, uint fill_y) |
| 1091 | { |
| 1092 | this->fill_x = fill_x; |
| 1093 | this->fill_y = fill_y; |
| 1094 | } |
| 1095 | |
| 1096 | /** |
| 1097 | * Set resize step of the widget. |
no outgoing calls
no test coverage detected