Skip to content

Commit

Permalink
next gcc fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jriegel committed Dec 15, 2013
1 parent 112a672 commit 182eaeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Gui/InputField.cpp
Expand Up @@ -139,7 +139,7 @@ void InputField::pushToHistory(const QString &valueq)
if(valueq.isEmpty())
value = this->text().toUtf8().constData();
else
value = valueq.toUtf8();
value = valueq.toUtf8().constData();

if(_handle.isValid()){
char hist1[21];
Expand Down Expand Up @@ -180,7 +180,7 @@ void InputField::pushToSavedValues(const QString &valueq)
if(valueq.isEmpty())
value = this->text().toUtf8().constData();
else
value = valueq.toUtf8();
value = valueq.toUtf8().constData();

if(_handle.isValid()){
char hist1[21];
Expand Down

0 comments on commit 182eaeb

Please sign in to comment.