Changeset - r28483:8ab6ecb98d85
[Not reviewed]
master
0 3 0
Peter Nelson - 3 months ago 2024-01-15 22:49:23
peter1138@openttd.org
Codechange: Remove redundant struct keyword.
3 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
src/bootstrap_gui.cpp
Show inline comments
 
@@ -32,7 +32,7 @@
 
#include "safeguards.h"
 

	
 
/** Widgets for the background window to prevent smearing. */
 
static const struct NWidgetPart _background_widgets[] = {
 
static const NWidgetPart _background_widgets[] = {
 
	NWidget(WWT_PANEL, COLOUR_DARK_BLUE, WID_BB_BACKGROUND), SetResize(1, 1),
 
	EndContainer(),
 
};
src/console_gui.cpp
Show inline comments
 
@@ -98,7 +98,7 @@ static inline void IConsoleResetHistoryP
 
static const char *IConsoleHistoryAdd(const char *cmd);
 
static void IConsoleHistoryNavigate(int direction);
 

	
 
static const struct NWidgetPart _nested_console_window_widgets[] = {
 
static const NWidgetPart _nested_console_window_widgets[] = {
 
	NWidget(WWT_EMPTY, INVALID_COLOUR, WID_C_BACKGROUND), SetResize(1, 1),
 
};
 

	
src/main_gui.cpp
Show inline comments
 
@@ -176,7 +176,7 @@ void FixTitleGameZoom(int zoom_adjust)
 
	vp->virtual_height = ScaleByZoom(vp->height, vp->zoom);
 
}
 

	
 
static const struct NWidgetPart _nested_main_window_widgets[] = {
 
static const NWidgetPart _nested_main_window_widgets[] = {
 
	NWidget(NWID_VIEWPORT, INVALID_COLOUR, WID_M_VIEWPORT), SetResize(1, 1),
 
};
 

	
0 comments (0 inline, 0 general)