Tracker: style fixes to ViewState

This commit is contained in:
John Scipione
2014-06-20 21:30:02 -04:00
parent a4c3bbd3f5
commit 27dc6eb7e1
2 changed files with 10 additions and 2 deletions
+9 -2
View File
@@ -78,6 +78,9 @@ static const int32 kColumnStateMinArchiveVersion = 21;
// bump version when layout changes // bump version when layout changes
// #pragma mark - BColumn
BColumn::BColumn(const char* title, float offset, float width, BColumn::BColumn(const char* title, float offset, float width,
alignment align, const char* attributeName, uint32 attrType, alignment align, const char* attributeName, uint32 attrType,
const char* displayAs, bool statField, bool editable) const char* displayAs, bool statField, bool editable)
@@ -244,7 +247,7 @@ BColumn::ArchiveToMessage(BMessage &message) const
} }
BColumn * BColumn*
BColumn::_Sanitize(BColumn* column) BColumn::_Sanitize(BColumn* column)
{ {
if (column == NULL) if (column == NULL)
@@ -273,7 +276,7 @@ BColumn::_Sanitize(BColumn* column)
} }
// #pragma mark - // #pragma mark - BViewState
BViewState::BViewState() BViewState::BViewState()
@@ -469,15 +472,19 @@ BViewState::_Sanitize(BViewState* state, bool fixOnly)
if (state->fViewMode == kListMode) { if (state->fViewMode == kListMode) {
if (state->fListOrigin.x < 0) if (state->fListOrigin.x < 0)
state->fListOrigin.x = 0; state->fListOrigin.x = 0;
if (state->fListOrigin.y < 0) if (state->fListOrigin.y < 0)
state->fListOrigin.y = 0; state->fListOrigin.y = 0;
} }
if (state->fIconSize < 16) if (state->fIconSize < 16)
state->fIconSize = 16; state->fIconSize = 16;
if (state->fIconSize > 128) if (state->fIconSize > 128)
state->fIconSize = 128; state->fIconSize = 128;
if (state->fLastIconSize < 16) if (state->fLastIconSize < 16)
state->fLastIconSize = 16; state->fLastIconSize = 16;
if (state->fLastIconSize > 128) if (state->fLastIconSize > 128)
state->fLastIconSize = 128; state->fLastIconSize = 128;
+1
View File
@@ -423,4 +423,5 @@ BViewState::StateNeedsSaving()
using namespace BPrivate; using namespace BPrivate;
#endif // _VIEW_STATE_H #endif // _VIEW_STATE_H