Changeset 561 for trunk/tools/assistant/lib/fulltextsearch/qreader.cpp
- Timestamp:
- Feb 11, 2010, 11:19:06 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
-
Property svn:mergeinfo
set to (toggle deleted branches)
/branches/vendor/nokia/qt/4.6.1 merged eligible /branches/vendor/nokia/qt/current merged eligible /branches/vendor/trolltech/qt/current 3-149
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/tools/assistant/lib/fulltextsearch/qreader.cpp
r2 r561 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 200 9 Nokia Corporation and/or its subsidiary(-ies).4 ** Contact: Qt Software Information ([email protected])3 ** Copyright (C) 200. 4 ** 5 5 ** 6 ** This file is part of the QCLucene library and is distributable under 7 ** the terms of the LGPL license as specified in the license.txt file. 6 ** Portion Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). 7 ** All rights reserved. 8 ** 9 ** This file may be used under the terms of the GNU Lesser General Public 10 ** License version 2.1 as published by the Free Software Foundation and 11 ** appearing in the file LICENSE.LGPL included in the packaging of this file. 12 ** Please review the following information to ensure the GNU Lesser General 13 ** Public License version 2.1 requirements will be met: 14 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 8 15 ** 9 16 ****************************************************************************/ … … 17 24 QT_BEGIN_NAMESPACE 18 25 19 QCLuceneReaderPrivate::QCLuceneReaderPrivate() 26 QCLuceneReaderPrivate::QCLuceneReaderPrivate() 20 27 : QSharedData() 21 { 22 reader = 0; 28 { 29 reader = 0; 23 30 deleteCLuceneReader = true; 24 31 } … … 26 33 QCLuceneReaderPrivate::QCLuceneReaderPrivate(const QCLuceneReaderPrivate &other) 27 34 : QSharedData() 28 { 29 reader = _CL_POINTER(other.reader); 35 { 36 reader = _CL_POINTER(other.reader); 37 deleteCLuceneReader = other.deleteCLuceneReader; 30 38 } 31 39 32 QCLuceneReaderPrivate::~QCLuceneReaderPrivate() 33 { 40 QCLuceneReaderPrivate::~QCLuceneReaderPrivate() 41 { 34 42 if (deleteCLuceneReader) 35 43 _CLDECDELETE(reader); 36 44 } 37 38 45 39 46 QCLuceneReader::QCLuceneReader() … … 63 70 } 64 71 65 QCLuceneStringReader::QCLuceneStringReader(const QString &value, qint32 length, 72 QCLuceneStringReader::QCLuceneStringReader(const QString &value, qint32 length, 66 73 bool copyData) 67 74 : QCLuceneReader()
Note:
See TracChangeset
for help on using the changeset viewer.