summaryrefslogtreecommitdiffstats
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-27 22:50:47 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-27 22:50:47 -0600
commit2c82d91b8c5ac4b7b5813a8c09b130e12180974c (patch)
tree751d78dee20fe34f785b0eccfbf82ddccae2648d /src/mainwindow.cpp
parenta805660cba37d573bd07615cbdb36d3bba11ecc1 (diff)
downloadabakus-2c82d91b8c5ac4b7b5813a8c09b130e12180974c.tar.gz
abakus-2c82d91b8c5ac4b7b5813a8c09b130e12180974c.zip
Fix FTBFS
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp2
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();