-rw-r--r-- | library/backend/qfiledirect_p.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/library/backend/qfiledirect_p.h b/library/backend/qfiledirect_p.h index fc29ac5..3ade622 100644 --- a/library/backend/qfiledirect_p.h +++ b/library/backend/qfiledirect_p.h | |||
@@ -28,9 +28,10 @@ class QPC_EXPORT QFileDirect : public QFile | |||
28 | { | 28 | { |
29 | public: | 29 | public: |
30 | QFileDirect() : QFile() { } | 30 | QFileDirect() : QFile() { } |
31 | QFileDirect( const QString &name ) : QFile(name) { } | 31 | QFileDirect( const QString &name ) : QFile(name) { } |
32 | 32 | ||
33 | FILE *directHandle() { return fh; } | 33 | FILE *directHandle() { return fh; } |
34 | }; | 34 | }; |
35 | 35 | ||
36 | #endif \ No newline at end of file | 36 | #endif |
37 | |||