1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-31 16:14:29 +01:00

Codefix: remove implicit LaTeX dependency

This commit is contained in:
Rubidium
2026-01-29 20:18:57 +01:00
committed by rubidium42
parent 920fc5657b
commit 954ac16c8c

View File

@@ -129,8 +129,8 @@ using WidgetLookup = std::map<WidgetID, class NWidgetBase *>;
/**
* Baseclass for nested widgets.
* @invariant After initialization, \f$current\_x = smallest\_x + n * resize\_x, for n \geq 0\f$.
* @invariant After initialization, \f$current\_y = smallest\_y + m * resize\_y, for m \geq 0\f$.
* @invariant After initialization: current_x = smallest_x + n * resize_x, for n >= 0.
* @invariant After initialization: current_y = smallest_y + m * resize_y, for m >= 0.
* @ingroup NestedWidgets
*/
class NWidgetBase {