check for section-templates only if needed
authorinsilmaril
Wed, 01 Feb 2006 16:14:55 +0000
changeset 201eda811e31b2e
parent 200 451cab91e350
child 202 c6945404eb48
check for section-templates only if needed
exports.cpp
version.h
     1.1 --- a/exports.cpp	Tue Jan 31 15:56:28 2006 +0000
     1.2 +++ b/exports.cpp	Wed Feb 01 16:14:55 2006 +0000
     1.3 @@ -304,7 +304,7 @@
     1.4  	}
     1.5  	
     1.6  	// Read section-template
     1.7 -	if (!loadStringFromDisk (sectionTemplateFile,sectionTemplate))
     1.8 +	if (useSections && !loadStringFromDisk (sectionTemplateFile,sectionTemplate))
     1.9  	{
    1.10  		QMessageBox::critical (0,QObject::tr("Critical Export Error"),QObject::tr("Could not read %1").arg(sectionTemplateFile));
    1.11  		return false;
     2.1 --- a/version.h	Tue Jan 31 15:56:28 2006 +0000
     2.2 +++ b/version.h	Wed Feb 01 16:14:55 2006 +0000
     2.3 @@ -3,6 +3,6 @@
     2.4  
     2.5  #define __VYM "VYM"
     2.6  #define __VYM_VERSION "1.7.8"
     2.7 -#define __BUILD_DATE "January 31, 2006"
     2.8 +#define __BUILD_DATE "February 1, 2006"
     2.9  
    2.10  #endif