1.8.67 Bugfixes
authorinsilmaril
Mon, 19 Feb 2007 12:01:54 +0000
changeset 430f001beefdec2
parent 429 69a4c16bd85b
child 431 c2ffbc9b832d
1.8.67 Bugfixes
demos/todo.vym
tex/vym.changelog
version.h
warningdialog.cpp
xsltproc.cpp
     1.1 Binary file demos/todo.vym has changed
     2.1 --- a/tex/vym.changelog	Mon Feb 19 12:01:52 2007 +0000
     2.2 +++ b/tex/vym.changelog	Mon Feb 19 12:01:54 2007 +0000
     2.3 @@ -1,3 +1,14 @@
     2.4 +-------------------------------------------------------------------
     2.5 +Mon Feb 17 16:32:53 CET 2007 - uwedr
     2.6 +
     2.7 +- Version: 1.8.67
     2.8 +- Feature: Unscroll all now only affects selected subtree 
     2.9 +- Bugfix: Drawing error when temporary linking subtrees
    2.10 +- Bugfix: Import of KDE Bookmarks
    2.11 +- Bugfix: Export to KDE Bookmarks
    2.12 +- Bugfix: Export to XHTML
    2.13 +- Bugfix: Drag and Drop of URLs now only creates one branch
    2.14 +
    2.15  -------------------------------------------------------------------
    2.16  Wed Feb 07 17:27:31 CET 2007 - uwedr
    2.17  
     3.1 --- a/version.h	Mon Feb 19 12:01:52 2007 +0000
     3.2 +++ b/version.h	Mon Feb 19 12:01:54 2007 +0000
     3.3 @@ -4,8 +4,8 @@
     3.4  #include <QString>
     3.5  
     3.6  #define __VYM_NAME "VYM"
     3.7 -#define __VYM_VERSION "1.8.66"
     3.8 -#define __VYM_BUILD_DATE "February 07, 2007"
     3.9 +#define __VYM_VERSION "1.8.67"
    3.10 +#define __VYM_BUILD_DATE "February 17, 2007"
    3.11  
    3.12  
    3.13  bool checkVersion(const QString &);
     4.1 --- a/warningdialog.cpp	Mon Feb 19 12:01:52 2007 +0000
     4.2 +++ b/warningdialog.cpp	Mon Feb 19 12:01:54 2007 +0000
     4.3 @@ -25,7 +25,7 @@
     4.4  		ui.cancelButton->hide();
     4.5  }
     4.6  
     4.7 -void WarningDialog::setShowAgainName (const QString &s)
     4.8 +void WarningDialog::setShowAgainName (const QString &s) //FIXME not implemented yet
     4.9  {
    4.10  /*
    4.11  	showAgainName=s;
    4.12 @@ -41,5 +41,5 @@
    4.13  
    4.14  void WarningDialog::setCaption(const QString &s)
    4.15  {
    4.16 -	setCaption("VYM - "+s);
    4.17 +	QDialog::setCaption("VYM - "+s);
    4.18  }
     5.1 --- a/xsltproc.cpp	Mon Feb 19 12:01:52 2007 +0000
     5.2 +++ b/xsltproc.cpp	Mon Feb 19 12:01:54 2007 +0000
     5.3 @@ -65,7 +65,9 @@
     5.4  	args << outputFile;
     5.5  	args << xslFile;
     5.6  	args << inputFile;
     5.7 -	dia.append ("vym is executing: \n" + xsltprocessor+" "+args.join(" ") );	
     5.8 +	QString com=xsltprocessor+" "+args.join(" "); 
     5.9 +	//cout <<com.ascii()<<endl;
    5.10 +	dia.append ("vym is executing: \n" + com );	
    5.11  	xsltProc->start(xsltprocessor,args);
    5.12  	if (!xsltProc->waitForStarted() )
    5.13  	{
    5.14 @@ -73,8 +75,7 @@
    5.15  					   QObject::tr("Could not start %1").arg(xsltprocessor) );
    5.16  	} else
    5.17  	{
    5.18 -		xsltProc->waitFinished();
    5.19 -		if (xsltProc->exitStatus()!=QProcess::NormalExit )
    5.20 +		if (!xsltProc->waitForFinished())
    5.21  			QMessageBox::critical( 0, QObject::tr( "Critical Error" ),
    5.22  			   QObject::tr("%1 didn't exit normally").arg(xsltprocessor) +
    5.23  			   xsltProc->getErrout() );