diff options
Diffstat (limited to 'src/modules/icolib/skin2icons.cpp')
-rw-r--r-- | src/modules/icolib/skin2icons.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/icolib/skin2icons.cpp b/src/modules/icolib/skin2icons.cpp index ab7975399f..5000607aaa 100644 --- a/src/modules/icolib/skin2icons.cpp +++ b/src/modules/icolib/skin2icons.cpp @@ -1437,7 +1437,7 @@ static void SaveCollapseState( HWND hwndTree ) TVITEM tvi;
hti = TreeView_GetRoot( hwndTree );
- while( hti != NULL ) {
+ while ( hti != NULL ) {
HTREEITEM ht;
TreeItem *treeItem;
@@ -1457,7 +1457,7 @@ static void SaveCollapseState( HWND hwndTree ) ht = TreeView_GetChild( hwndTree, hti );
if ( ht == NULL ) {
ht = TreeView_GetNextSibling( hwndTree, hti );
- while( ht == NULL ) {
+ while ( ht == NULL ) {
hti = TreeView_GetParent( hwndTree, hti );
if ( hti == NULL ) break;
ht = TreeView_GetNextSibling( hwndTree, hti );
|