[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    =?utf-8?q?=5Bkoffice=5D_libs/kotext/changetracker=3A_Rename_priv?=
From:       Thomas Zander <zander () kde ! org>
Date:       2011-04-23 9:07:43
Message-ID: 20110423090743.7EF99A6124 () git ! kde ! org
[Download RAW message or body]

Git commit 8ca00b9bf02d9b8e1a491ea2c26aebec023694b7 by Thomas Zander.
Committed on 28/03/2011 at 19:40.
Pushed by zander into branch 'master'.

Rename private header to have a _p

M  +1    -1    libs/kotext/changetracker/KoDeletedRowColumnDataStore.cpp     
M  +1    -1    libs/kotext/changetracker/KoDeletedRowData.cpp     
D  +0    -64   libs/kotext/changetracker/KoDeletedRowData.h     
A  +64   -0    libs/kotext/changetracker/KoDeletedRowData_p.h         [License: LGPL \
(v2+)]

http://commits.kde.org/koffice/8ca00b9bf02d9b8e1a491ea2c26aebec023694b7

diff --git a/libs/kotext/changetracker/KoDeletedRowColumnDataStore.cpp \
b/libs/kotext/changetracker/KoDeletedRowColumnDataStore.cpp index c943c9b..b9b02d4 \
                100644
--- a/libs/kotext/changetracker/KoDeletedRowColumnDataStore.cpp
+++ b/libs/kotext/changetracker/KoDeletedRowColumnDataStore.cpp
@@ -18,7 +18,7 @@
  */
 
 #include "KoDeletedRowColumnDataStore_p.h"
-#include "KoDeletedRowData.h"
+#include "KoDeletedRowData_p.h"
 #include "KoDeletedColumnData_p.h"
 
 KoDeletedRowColumnDataStore::KoDeletedRowColumnDataStore()
diff --git a/libs/kotext/changetracker/KoDeletedRowData.cpp \
b/libs/kotext/changetracker/KoDeletedRowData.cpp index ab2ad1b..c0a3c57 100644
--- a/libs/kotext/changetracker/KoDeletedRowData.cpp
+++ b/libs/kotext/changetracker/KoDeletedRowData.cpp
@@ -22,7 +22,7 @@
 #include <QTextCursor>
 #include <QTextTable>
 
-#include "KoDeletedRowData.h"
+#include "KoDeletedRowData_p.h"
 #include "KoDeletedCellData_p.h"
 
 #include <styles/KoTableRowStyle.h>
diff --git a/libs/kotext/changetracker/KoDeletedRowData.h \
b/libs/kotext/changetracker/KoDeletedRowData.h deleted file mode 100644
index f47945c..0000000
--- a/libs/kotext/changetracker/KoDeletedRowData.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/* This file is part of the KDE project
- * Copyright (C) 2011 Ganesh Paramasivam <ganesh@crystalfab.com>
- *
- * 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 __KODELETEDROWDATA_H__
-#define __KODELETEDROWDATA_H__
-
-//
-//  W A R N I N G
-//  -------------
-//
-// This file is not part of the KoText API.  It exists purely as an
-// implementation detail.  This header file may change from version to
-// version without notice, or even be removed.
-//
-// We mean it.
-//
-
-#include <QVector>
-
-class KoDeletedCellData;
-class KoTableRowStyle;
-class QTextTable;
-
-class KoDeletedRowData
-{
-public:
-    KoDeletedRowData(int rowNumber);
-
-    ~KoDeletedRowData();
-
-    int rowNumber();
-
-    void setRowStyle(KoTableRowStyle *rowStyle);
-
-    KoTableRowStyle *rowStyle();
-
-    const QVector<KoDeletedCellData *>& deletedCells();
-
-    void storeDeletedCells(QTextTable *table);
-
-private:
-    int row_number;
-
-    KoTableRowStyle *row_style;
-
-    QVector<KoDeletedCellData *> deleted_cells;
-};
-
-#endif
diff --git a/libs/kotext/changetracker/KoDeletedRowData_p.h \
b/libs/kotext/changetracker/KoDeletedRowData_p.h new file mode 100644
index 0000000..f47945c
--- /dev/null
+++ b/libs/kotext/changetracker/KoDeletedRowData_p.h
@@ -0,0 +1,64 @@
+/* This file is part of the KDE project
+ * Copyright (C) 2011 Ganesh Paramasivam <ganesh@crystalfab.com>
+ *
+ * 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 __KODELETEDROWDATA_H__
+#define __KODELETEDROWDATA_H__
+
+//
+//  W A R N I N G
+//  -------------
+//
+// This file is not part of the KoText API.  It exists purely as an
+// implementation detail.  This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
+#include <QVector>
+
+class KoDeletedCellData;
+class KoTableRowStyle;
+class QTextTable;
+
+class KoDeletedRowData
+{
+public:
+    KoDeletedRowData(int rowNumber);
+
+    ~KoDeletedRowData();
+
+    int rowNumber();
+
+    void setRowStyle(KoTableRowStyle *rowStyle);
+
+    KoTableRowStyle *rowStyle();
+
+    const QVector<KoDeletedCellData *>& deletedCells();
+
+    void storeDeletedCells(QTextTable *table);
+
+private:
+    int row_number;
+
+    KoTableRowStyle *row_style;
+
+    QVector<KoDeletedCellData *> deleted_cells;
+};
+
+#endif


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic