diff --git a/plugins/flake/textshape/textlayout/KoPointedAt.h b/plugins/flake/textshape/textlayout/KoPointedAt.h index 01f09beaf0..27f7c53997 100644 --- a/plugins/flake/textshape/textlayout/KoPointedAt.h +++ b/plugins/flake/textshape/textlayout/KoPointedAt.h @@ -1,63 +1,63 @@ /* This file is part of the KDE project * Copyright (C) 2011 C. Boemann, KO GmbH * Copyright (C) 2011 C. Boemann * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #ifndef KOPOINTEDAT_H #define KOPOINTEDAT_H #include "kritatextlayout_export.h" #include #include #include class KoBookmark; class QTextTable; class KoInlineTextObjectManager; class KoTextRangeManager; class KoInlineNote; class KRITATEXTLAYOUT_EXPORT KoPointedAt { public: KoPointedAt(); explicit KoPointedAt(KoPointedAt *other); void fillInLinks(const QTextCursor &cursor, KoInlineTextObjectManager *inlineManager, KoTextRangeManager *rangeManager); enum TableHit { None , ColumnDivider , RowDivider }; int position; - KoBookmark *bookmark; + KoBookmark *bookmark {0}; QString externalHRef; - KoInlineNote *note; - int noteReference; - QTextTable *table; - TableHit tableHit; - int tableRowDivider; - int tableColumnDivider; - qreal tableLeadSize; - qreal tableTrailSize; + KoInlineNote *note {0}; + int noteReference {0}; + QTextTable *table {0}; + TableHit tableHit {None}; + int tableRowDivider {0}; + int tableColumnDivider {0}; + qreal tableLeadSize {0.0}; + qreal tableTrailSize {0.0}; QPointF tableDividerPos; }; #endif