diff options
author | dos-reis <gdr@axiomatics.org> | 2014-10-04 00:50:57 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2014-10-04 00:50:57 +0000 |
commit | 564aff97f80abac84be64552f5238903cb126c33 (patch) | |
tree | 0ba82ae0f8e4249eb1dc37a7662219523f5d3cd4 /src/gui | |
parent | 33259a6291be67fdc2545024f8fd5ff9603fd8dd (diff) | |
download | open-axiom-564aff97f80abac84be64552f5238903cb126c33.tar.gz |
Fix QT5 toAscii() compatibility issue.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/server.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/server.cc b/src/gui/server.cc index 7af0aa7c..4095fa71 100644 --- a/src/gui/server.cc +++ b/src/gui/server.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2013, Gabriel Dos Reis. +// Copyright (C) 2013-2014, Gabriel Dos Reis. // All rights reserved. // Written by Gabriel Dos Reis. // @@ -53,7 +53,7 @@ namespace OpenAxiom { void Server::input(const QString& s) { - write(s.toAscii()); + write(s.toLatin1()); write("\n"); } |