We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 998a850 commit c428fe5Copy full SHA for c428fe5
2 files changed
Source/Processors/Channel/InfoObjects.cpp
@@ -56,7 +56,7 @@ String NodeInfoBase::getCurrentNodeName() const
56
HistoryObject::~HistoryObject()
57
{}
58
59
-String HistoryObject::getHistoricString()
+String HistoryObject::getHistoricString() const
60
{
61
return m_historicString;
62
}
Source/Processors/Channel/InfoObjects.h
@@ -71,7 +71,7 @@ class PLUGIN_API HistoryObject
71
public:
72
virtual ~HistoryObject();
73
/** Returns the historic string */
74
- String getHistoricString();
+ String getHistoricString() const;
75
/** Adds a new entry in the historic string*/
76
void addToHistoricString(String entry);
77
0 commit comments