diff -r 9ae68208e2ff -r 040f32294895 exportxhtmldialog.cpp --- a/exportxhtmldialog.cpp Mon Feb 19 12:01:52 2007 +0000 +++ b/exportxhtmldialog.cpp Wed Oct 24 14:41:34 2007 +0000 @@ -11,6 +11,7 @@ extern Options options; extern QDir vymBaseDir; extern Settings settings; +extern bool debug; ExportXHTMLDialog::ExportXHTMLDialog(QWidget* parent) : QDialog(parent) { @@ -118,11 +119,15 @@ } } +void ExportXHTMLDialog::setDir(const QString &d) +{ + dir=d; + if (dir.right(1)!="/") dir+="/"; +} + void ExportXHTMLDialog::dirChanged() { - dir=ui.lineEditDir->text(); - if (dir.right(1)!="/") - dir+="/"; + setDir (ui.lineEditDir->text()); settingsChanged=true; }