diff -r 7ba1c04d96d5 -r 4ffc47ae27e4 exportxhtmldialog.cpp --- a/exportxhtmldialog.cpp Fri Nov 09 12:07:20 2007 +0000 +++ b/exportxhtmldialog.cpp Fri Nov 09 12:07:21 2007 +0000 @@ -85,16 +85,18 @@ ui.outputButton->setChecked(showOutput); // For testing better use local styles + const QString defxsl(vymBaseDir.path() + "/styles/vym2xhtml.xsl"); + const QString defcss(vymBaseDir.path() + "/styles/vym.css"); if (options.isOn ("local")) { - xsl=vymBaseDir.path()+"/styles/vym2xhtml.xsl"; - css=vymBaseDir.path()+"/styles/vym.css"; + xsl=defxsl; + css=defcss; } else { xsl=settings.readLocalEntry - (filepath,"/export/xhtml/xsl","/usr/share/vym/styles/vym2xhtml.xsl"); + (filepath,"/export/xhtml/xsl",defxsl); css=settings.readLocalEntry - (filepath,"/export/xhtml/css","/usr/share/vym/styles/vym.css"); + (filepath,"/export/xhtml/css",defcss); } ui.lineEditXSL->setText(xsl); ui.lineEditCSS->setText(css);