From 57e9858c1df27c2c8d0789baca67ab38575af85c Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 31 Dec 2016 10:36:13 -0500 Subject: [PATCH] ColUrgency: Marked column as unmodifiable --- src/columns/ColUrgency.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/columns/ColUrgency.cpp b/src/columns/ColUrgency.cpp index 82a6586ca..8ee23ef95 100644 --- a/src/columns/ColUrgency.cpp +++ b/src/columns/ColUrgency.cpp @@ -32,11 +32,12 @@ //////////////////////////////////////////////////////////////////////////////// ColumnUrgency::ColumnUrgency () { - _name = "urgency"; - _style = "real"; - _label = STRING_COLUMN_LABEL_URGENCY; - _styles = {"real", "integer"}; - _examples = {"4.6", "4"}; + _name = "urgency"; + _style = "real"; + _label = STRING_COLUMN_LABEL_URGENCY; + _modifiable = false; + _styles = {"real", "integer"}; + _examples = {"4.6", "4"}; } ////////////////////////////////////////////////////////////////////////////////