diff options
author | George Hazan <george.hazan@gmail.com> | 2013-01-27 11:57:40 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-01-27 11:57:40 +0000 |
commit | 18f6faf592c21341463e835599b61fa811d3e1a0 (patch) | |
tree | 33074d2a8466bdc6b27a4a93ae97e871da57eef7 /plugins/Clist_modern/src/modern_row.cpp | |
parent | 3e2fa0fa0e7f74b99e3f76d966928e30f1b39393 (diff) |
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@3301 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_row.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_row.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Clist_modern/src/modern_row.cpp b/plugins/Clist_modern/src/modern_row.cpp index f6bf9e272a..093bfb6d68 100644 --- a/plugins/Clist_modern/src/modern_row.cpp +++ b/plugins/Clist_modern/src/modern_row.cpp @@ -70,7 +70,7 @@ ROWCELL *cppInitModernRow(ROWCELL ** tabAccess) int i=0;
if ( !db_get_b(NULL,"ModernData","UseAdvancedRowLayout",SETTING_ROW_ADVANCEDLAYOUT_DEFAULT)) return NULL;
tmplbuf = NULL;
- if (db_get_b(NULL,"ModernData","UseAdvancedRowLayout",SETTING_ROW_ADVANCEDLAYOUT_DEFAULT) == 1)
+ if ( db_get_b(NULL,"ModernData","UseAdvancedRowLayout",SETTING_ROW_ADVANCEDLAYOUT_DEFAULT) == 1)
tmplbuf = db_get_sa(NULL,"ModernData","RowTemplate");
if (tmplbuf) {
rowParse(RowRoot, RowRoot, tmplbuf, i, seq,tabAccess);
@@ -361,7 +361,7 @@ void rowResetEmptyRects(ROWCELL* cell) if ( !cell) return;
if (cell->type == 0)
{
- SetRect(&(cell->r),0,0,0,0);
+ SetRect(&(cell->r), 0, 0, 0, 0);
cell->full_width = 0;
cell->fixed_width = 0;
}
@@ -378,7 +378,7 @@ void rowResetEmptyRects(ROWCELL* cell) void rowCalculateMinSize(ROWCELL* cell)
{
ROWCELL* curchild = NULL;
- int w = 0,h = 0;
+ int w = 0, h = 0;
int wl = 0, hl = 0;
int fullWidth = 0;
if ( !cell) return;
|