format: update .clang-format

This commit is contained in:
beriff
2026-03-05 17:55:11 +07:00
parent eefd95e4d2
commit f001b90745
12 changed files with 93 additions and 91 deletions

View File

@@ -8,16 +8,16 @@ Global application widget state, holding references to
all the widgets used in internal logic of the program
*/
typedef struct VektorWidgetState {
GtkWindow *window;
GtkPaned *workspacePaned;
GtkPicture *workspaceCanvas;
GtkWindow* window;
GtkPaned* workspacePaned;
GtkPicture* workspaceCanvas;
GtkButton *workspaceButtonLinetool;
GtkButton* workspaceButtonLinetool;
// GtkWidget* Workspace
} VektorWidgetState;
void vektor_uictrl_init(GtkApplication *app, VektorWidgetState *stateOut);
void vektor_uictrl_map(VektorWidgetState *state);
void vektor_uictrl_init(GtkApplication* app, VektorWidgetState* stateOut);
void vektor_uictrl_map(VektorWidgetState* state);
#endif