bak
authorinsilmaril
Sat, 24 Feb 2007 12:32:53 +0000
changeset 431c2ffbc9b832d
parent 430 f001beefdec2
child 432 f867269ab8a1
bak
demos/todo.vym
flags/flag-url-16x16.png
mapeditor.cpp
tex/vym.changelog
version.h
xsltproc.cpp
     1.1 Binary file demos/todo.vym has changed
     2.1 Binary file flags/flag-url-16x16.png has changed
     3.1 --- a/mapeditor.cpp	Mon Feb 19 12:01:54 2007 +0000
     3.2 +++ b/mapeditor.cpp	Sat Feb 24 12:32:53 2007 +0000
     3.3 @@ -3606,7 +3606,11 @@
     3.4  						lmosel->move(p.x() -movingObj_start.x(), p.y()-movingObj_start.y() -lmosel->getTopPad());
     3.5  				} 
     3.6  
     3.7 -				if (lmo && (lmo!=lmosel) && xelection.getBranch() ) 
     3.8 +				// Maybe we can relink temporary?
     3.9 +				if (lmo && (lmo!=lmosel) && xelection.getBranch() && 
    3.10 +					 (typeid(*lmo)==typeid(BranchObj) ||
    3.11 +					  typeid(*lmo)==typeid(MapCenterObj)) ) 
    3.12 +
    3.13  				{
    3.14  					if (e->modifiers()==Qt::ControlModifier)
    3.15  					{
     4.1 --- a/tex/vym.changelog	Mon Feb 19 12:01:54 2007 +0000
     4.2 +++ b/tex/vym.changelog	Sat Feb 24 12:32:53 2007 +0000
     4.3 @@ -1,3 +1,9 @@
     4.4 +-------------------------------------------------------------------
     4.5 +Tue Feb 20 22:16:09 CET 2007 - uwe
     4.6 +
     4.7 +- Version: 1.8.68
     4.8 +- Bugfix: Crash when trying to temporary link to floatimage 
     4.9 +
    4.10  -------------------------------------------------------------------
    4.11  Mon Feb 17 16:32:53 CET 2007 - uwedr
    4.12  
     5.1 --- a/version.h	Mon Feb 19 12:01:54 2007 +0000
     5.2 +++ b/version.h	Sat Feb 24 12:32:53 2007 +0000
     5.3 @@ -4,8 +4,8 @@
     5.4  #include <QString>
     5.5  
     5.6  #define __VYM_NAME "VYM"
     5.7 -#define __VYM_VERSION "1.8.67"
     5.8 -#define __VYM_BUILD_DATE "February 17, 2007"
     5.9 +#define __VYM_VERSION "1.8.68"
    5.10 +#define __VYM_BUILD_DATE "February 20, 2007"
    5.11  
    5.12  
    5.13  bool checkVersion(const QString &);
     6.1 --- a/xsltproc.cpp	Mon Feb 19 12:01:54 2007 +0000
     6.2 +++ b/xsltproc.cpp	Sat Feb 24 12:32:53 2007 +0000
     6.3 @@ -66,7 +66,7 @@
     6.4  	args << xslFile;
     6.5  	args << inputFile;
     6.6  	QString com=xsltprocessor+" "+args.join(" "); 
     6.7 -	//cout <<com.ascii()<<endl;
     6.8 +	cout <<com.ascii()<<endl;
     6.9  	dia.append ("vym is executing: \n" + com );	
    6.10  	xsltProc->start(xsltprocessor,args);
    6.11  	if (!xsltProc->waitForStarted() )