Fixes for compiling with gcc 4.3
authorinsilmaril
Tue, 23 Oct 2007 13:05:22 +0000
changeset 611a1ae877b438d
parent 610 ff98aee6fb99
child 612 316e9237794c
Fixes for compiling with gcc 4.3
branchobj.cpp
demos/vym-projectplan.vym
exports.h
mainwindow.cpp
ornamentedobj.cpp
selection.cpp
tex/vym.changelog
xml-vym.cpp
     1.1 --- a/branchobj.cpp	Mon Oct 22 09:50:09 2007 +0000
     1.2 +++ b/branchobj.cpp	Tue Oct 23 13:05:22 2007 +0000
     1.3 @@ -366,10 +366,12 @@
     1.4  	// BranchObj can use color of heading
     1.5  
     1.6  	if (mapEditor)
     1.7 +	{
     1.8  		if (mapEditor->getMapLinkColorHint()==HeadingColor)
     1.9  			LinkableMapObj::setLinkColor (heading->getColor() );
    1.10  		else	
    1.11  			LinkableMapObj::setLinkColor ();
    1.12 +	}		
    1.13  }
    1.14  
    1.15  void BranchObj::setColorSubtree(QColor col)
     2.1 Binary file demos/vym-projectplan.vym has changed
     3.1 --- a/exports.h	Mon Oct 22 09:50:09 2007 +0000
     3.2 +++ b/exports.h	Tue Oct 23 13:05:22 2007 +0000
     3.3 @@ -46,6 +46,7 @@
     3.4  public:
     3.5  	ExportASCII();
     3.6  	virtual void doExport();
     3.7 +	virtual QString underline (QString &text, QString &line);
     3.8  };
     3.9  
    3.10  ///////////////////////////////////////////////////////////////////////
     4.1 --- a/mainwindow.cpp	Mon Oct 22 09:50:09 2007 +0000
     4.2 +++ b/mainwindow.cpp	Tue Oct 23 13:05:22 2007 +0000
     4.3 @@ -3,6 +3,7 @@
     4.4  #include <QtGui>
     4.5  
     4.6  #include <iostream>
     4.7 +#include <typeinfo>
     4.8  
     4.9  #include "aboutdialog.h"
    4.10  #include "branchpropwindow.h"
     5.1 --- a/ornamentedobj.cpp	Mon Oct 22 09:50:09 2007 +0000
     5.2 +++ b/ornamentedobj.cpp	Tue Oct 23 13:05:22 2007 +0000
     5.3 @@ -1,3 +1,5 @@
     5.4 +#include <typeinfo> 
     5.5 +
     5.6  #include "ornamentedobj.h"
     5.7  #include "texteditor.h"
     5.8  #include "mapeditor.h"
     6.1 --- a/selection.cpp	Mon Oct 22 09:50:09 2007 +0000
     6.2 +++ b/selection.cpp	Tue Oct 23 13:05:22 2007 +0000
     6.3 @@ -1,3 +1,5 @@
     6.4 +#include <typeinfo>
     6.5 +
     6.6  #include "selection.h"
     6.7  
     6.8  #include "mainwindow.h"
     7.1 --- a/tex/vym.changelog	Mon Oct 22 09:50:09 2007 +0000
     7.2 +++ b/tex/vym.changelog	Tue Oct 23 13:05:22 2007 +0000
     7.3 @@ -1,3 +1,8 @@
     7.4 +-------------------------------------------------------------------
     7.5 +Tue Oct 23 13:11:52 CEST 2007 - uwedr@suse.de
     7.6 +
     7.7 +- Bugfix: included more <typeinfo> for compiling with new gcc 4.3
     7.8 +
     7.9  -------------------------------------------------------------------
    7.10  Fri Oct 19 18:08:27 CEST 2007 - uwedr@suse.de
    7.11  
     8.1 --- a/xml-vym.cpp	Mon Oct 22 09:50:09 2007 +0000
     8.2 +++ b/xml-vym.cpp	Tue Oct 23 13:05:22 2007 +0000
     8.3 @@ -4,6 +4,7 @@
     8.4  #include <QColor>
     8.5  #include <QTextStream>
     8.6  #include <iostream>
     8.7 +#include <typeinfo>
     8.8  
     8.9  #include "misc.h"
    8.10  #include "settings.h"