diff options
Diffstat (limited to 'protocols/Omegle/src/theme.cpp')
-rw-r--r-- | protocols/Omegle/src/theme.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Omegle/src/theme.cpp b/protocols/Omegle/src/theme.cpp index 48f61ba93a..aa794eb8f1 100644 --- a/protocols/Omegle/src/theme.cpp +++ b/protocols/Omegle/src/theme.cpp @@ -38,9 +38,9 @@ void InitIcons(void) HANDLE GetIconHandle(const char* name)
{
- for(size_t i=0; i<_countof(icons); i++)
+ for (size_t i = 0; i < _countof(icons); i++)
{
- if(mir_strcmp(icons[i].szName, name) == 0)
+ if (mir_strcmp(icons[i].szName, name) == 0)
return hIconLibItem[i];
}
return 0;
|