diff --git a/src/columns/ColDepends.cpp b/src/columns/ColDepends.cpp index 287045bb5..75b055a60 100644 --- a/src/columns/ColDepends.cpp +++ b/src/columns/ColDepends.cpp @@ -58,7 +58,7 @@ ColumnDepends::ColumnDepends () // Note that you can not determine which gets called first. void ColumnDepends::setStyle (const std::string& value) { - _style = value; + Column::setStyle (value); if (_style == "indicator" && _label == STRING_COLUMN_LABEL_DEP) _label = _label.substr (0, context.config.get ("dependency.indicator").length ()); else if (_style == "count" && _label == STRING_COLUMN_LABEL_DEP) _label = STRING_COLUMN_LABEL_DEP_S; diff --git a/src/columns/ColEntry.cpp b/src/columns/ColEntry.cpp index c78a76171..2bdf0890d 100644 --- a/src/columns/ColEntry.cpp +++ b/src/columns/ColEntry.cpp @@ -41,7 +41,7 @@ ColumnEntry::ColumnEntry () // Note that you can not determine which gets called first. void ColumnEntry::setStyle (const std::string& value) { - _style = value; + Column::setStyle (value); if (_style == "age" && _label == STRING_COLUMN_LABEL_ADDED) diff --git a/src/columns/ColRType.cpp b/src/columns/ColRType.cpp index 1d0e2d9be..e9e2d9ac5 100644 --- a/src/columns/ColRType.cpp +++ b/src/columns/ColRType.cpp @@ -50,7 +50,7 @@ ColumnRType::ColumnRType () // Note that you can not determine which gets called first. void ColumnRType::setStyle (const std::string& value) { - _style = value; + Column::setStyle (value); if (_style == "indicator" && _label == STRING_COLUMN_LABEL_RTYPE) _label = _label.substr (0, context.config.get ("rtype.indicator").length ()); diff --git a/src/columns/ColRecur.cpp b/src/columns/ColRecur.cpp index bcf7db6ae..ea4d10018 100644 --- a/src/columns/ColRecur.cpp +++ b/src/columns/ColRecur.cpp @@ -57,7 +57,7 @@ ColumnRecur::ColumnRecur () // Note that you can not determine which gets called first. void ColumnRecur::setStyle (const std::string& value) { - _style = value; + Column::setStyle (value); if (_style == "indicator" && _label == STRING_COLUMN_LABEL_RECUR) _label = _label.substr (0, context.config.get ("recurrence.indicator").length ()); diff --git a/src/columns/ColScheduled.cpp b/src/columns/ColScheduled.cpp index 40e51a666..646ebd0e4 100644 --- a/src/columns/ColScheduled.cpp +++ b/src/columns/ColScheduled.cpp @@ -40,7 +40,7 @@ ColumnScheduled::ColumnScheduled () // Note that you can not determine which gets called first. void ColumnScheduled::setStyle (const std::string& value) { - _style = value; + Column::setStyle (value); if (_style == "countdown" && _label == STRING_COLUMN_LABEL_SCHED) _label = STRING_COLUMN_LABEL_COUNT; diff --git a/src/columns/ColStart.cpp b/src/columns/ColStart.cpp index 6760a4227..7606fefad 100644 --- a/src/columns/ColStart.cpp +++ b/src/columns/ColStart.cpp @@ -47,7 +47,7 @@ ColumnStart::ColumnStart () // Note that you can not determine which gets called first. void ColumnStart::setStyle (const std::string& value) { - _style = value; + Column::setStyle (value); if (_style == "active" && _label == STRING_COLUMN_LABEL_STARTED) _label = STRING_COLUMN_LABEL_ACTIVE; diff --git a/src/columns/ColStatus.cpp b/src/columns/ColStatus.cpp index ef403bd00..2e5af0cbe 100644 --- a/src/columns/ColStatus.cpp +++ b/src/columns/ColStatus.cpp @@ -46,7 +46,7 @@ ColumnStatus::ColumnStatus () // Note that you can not determine which gets called first. void ColumnStatus::setStyle (const std::string& value) { - _style = value; + Column::setStyle (value); if (_style == "short" && _label == STRING_COLUMN_LABEL_STATUS) _label = STRING_COLUMN_LABEL_STAT; diff --git a/src/columns/ColTags.cpp b/src/columns/ColTags.cpp index b044bb827..6684b331b 100644 --- a/src/columns/ColTags.cpp +++ b/src/columns/ColTags.cpp @@ -59,7 +59,7 @@ ColumnTags::ColumnTags () // Note that you can not determine which gets called first. void ColumnTags::setStyle (const std::string& value) { - _style = value; + Column::setStyle (value); if (_style == "indicator" && _label == STRING_COLUMN_LABEL_TAGS)