Skip to content
Snippets Groups Projects
Commit c428fe56 authored by Aaron Cuevas Lopez's avatar Aaron Cuevas Lopez
Browse files

Fix const modifier in getHistoricString()

parent 998a8500
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ String NodeInfoBase::getCurrentNodeName() const
HistoryObject::~HistoryObject()
{}
String HistoryObject::getHistoricString()
String HistoryObject::getHistoricString() const
{
return m_historicString;
}
......
......@@ -71,7 +71,7 @@ protected:
public:
virtual ~HistoryObject();
/** Returns the historic string */
String getHistoricString();
String getHistoricString() const;
/** Adds a new entry in the historic string*/
void addToHistoricString(String entry);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment