diff options
author | Timothy Pearson <[email protected]> | 2011-11-27 22:50:47 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-07-29 19:24:38 +0200 |
commit | b163211001db812c1e19afa9fa89cbc251132221 (patch) | |
tree | 2cbe2037acbcc53b955e51070d2e8a01844c36cd /src/mainwindow.cpp | |
parent | 2016ba9b1ccbef2178c87f7694ccbcd00b492a67 (diff) | |
download | abakus-b163211001db812c1e19afa9fa89cbc251132221.tar.gz abakus-b163211001db812c1e19afa9fa89cbc251132221.zip |
Fix FTBFS
(cherry picked from commit 2c82d91b8c5ac4b7b5813a8c09b130e12180974c)
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 764c2aa..613f513 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -419,7 +419,7 @@ void MainWindow::loadConfig() TQStringList fnList = config.readListEntry("FunctionList"); for(TQStringList::ConstIterator it = fnList.begin(); it != fnList.end(); ++it) - parseString(*it); // Run the function definitions through the parser + parseString((*it).ascii()); // Run the function definitions through the parser } populateListViews(); |