blob: 9f961e08322765b7b668ec319ea04e7d2c3c5966 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Patch from Andreas Ntaflos <daff@dword.org> to fix compilation issue
# 15 Mar 2007 Marcus D. Hanwell <cryos@gentoo.org> from bug 171004.
--- src/fileimporter.h 2007-03-15 05:55:41.000000000 +0100
+++ src/fileimporter.h.new 2007-03-15 05:56:45.000000000 +0100
@@ -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; };
|