Skip to content

Commit c181d28

Browse files
committed
astyle formatting
[ci skip]
1 parent 428d014 commit c181d28

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

test/cfg/wxwidgets.cpp

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -82,22 +82,22 @@ void nullPointer(const wxString &str)
8282

8383
void nullPointer_wxSizer_Add(wxSizer &sizer, wxWindow *w)
8484
{
85-
wxWindow * const ptr = 0;
86-
// cppcheck-suppress nullPointer
87-
sizer.Add(ptr);
88-
// No warning shall be issued for
89-
sizer.Add(w);
85+
wxWindow * const ptr = 0;
86+
// cppcheck-suppress nullPointer
87+
sizer.Add(ptr);
88+
// No warning shall be issued for
89+
sizer.Add(w);
9090
}
9191

92-
void uninitvar_wxSizer_Add(wxSizer &sizer, wxWindow *w,wxObject* userData )
92+
void uninitvar_wxSizer_Add(wxSizer &sizer, wxWindow *w,wxObject* userData)
9393
{
94-
int uninit;
95-
// cppcheck-suppress uninitvar
96-
sizer.Add(w,uninit);
97-
// cppcheck-suppress uninitvar
98-
sizer.Add(w,4,uninit);
99-
// cppcheck-suppress uninitvar
100-
sizer.Add(w,4,2,uninit,userData);
94+
int uninit;
95+
// cppcheck-suppress uninitvar
96+
sizer.Add(w,uninit);
97+
// cppcheck-suppress uninitvar
98+
sizer.Add(w,4,uninit);
99+
// cppcheck-suppress uninitvar
100+
sizer.Add(w,4,2,uninit,userData);
101101
}
102102

103103
void ignoredReturnValue(const wxString &s)

0 commit comments

Comments
 (0)