1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Fix build with gcc 4.1

Submitted by:	pointyhat via kris
This commit is contained in:
Markus Brueffer 2007-03-27 20:40:37 +00:00
parent b6cc02a223
commit b02ba2182c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=188591

View File

@ -0,0 +1,11 @@
--- src/fileimporter.h.orig Mon Mar 26 20:15:05 2007
+++ src/fileimporter.h Mon Mar 26 20:15:33 2007
@@ -39,7 +39,7 @@
~FileImporter();
File* load ( const QString& text );
- virtual File* load( QIODevice *iodevice ) = NULL;
+ virtual File* load( QIODevice *iodevice ) = 0;
static bool guessCanDecode( const QString & ) { return FALSE; };