fixed typo in oracle importer

This commit is contained in:
Max-Wilhelm Bruker 2009-10-23 12:23:20 +02:00
parent 3d1052f54c
commit da6a1a0dbd
2 changed files with 9 additions and 4 deletions

View file

@ -5,7 +5,7 @@
WindowMain::WindowMain(QWidget *parent)
: QMainWindow(parent)
{
importer = new OracleImporter(qApp->applicationDirPath() + "../oracle", this);
importer = new OracleImporter(qApp->applicationDirPath() + "/../oracle", this);
QVBoxLayout *checkboxLayout = new QVBoxLayout;
QList<SetToDownload> &sets = importer->getSets();
@ -103,4 +103,4 @@ void WindowMain::checkBoxChanged(int state)
sets[i].setImport(state);
break;
}
}
}