[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:44
Message-ID: 20110423090744.09902A6130 () git ! kde ! org
[Download RAW message or body]

Git commit 8dd3e0318307131e091effb2666d299d3f81f51a by Thomas Zander.
Committed on 27/03/2011 at 23:26.
Pushed by zander into branch 'master'.

rename private header

M  +1    -1    libs/kotext/changetracker/KoDeletedCellData.cpp     
D  +0    -61   libs/kotext/changetracker/KoDeletedCellData.h     
A  +61   -0    libs/kotext/changetracker/KoDeletedCellData_p.h         [License: LGPL \
(v2+)] M  +1    -1    libs/kotext/changetracker/KoDeletedColumnData.cpp     
M  +1    -1    libs/kotext/changetracker/KoDeletedRowData.cpp     

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

diff --git a/libs/kotext/changetracker/KoDeletedCellData.cpp \
b/libs/kotext/changetracker/KoDeletedCellData.cpp index 577b534..141ee35 100644
--- a/libs/kotext/changetracker/KoDeletedCellData.cpp
+++ b/libs/kotext/changetracker/KoDeletedCellData.cpp
@@ -20,7 +20,7 @@
 #include <QTextTableCellFormat>
 #include <QTextDocumentFragment>
 
-#include "KoDeletedCellData.h"
+#include "KoDeletedCellData_p.h"
 
 KoDeletedCellData::KoDeletedCellData(int rowNumber, int columnNumber)
 {
diff --git a/libs/kotext/changetracker/KoDeletedCellData.h \
b/libs/kotext/changetracker/KoDeletedCellData.h deleted file mode 100644
index 4a3b80a..0000000
--- a/libs/kotext/changetracker/KoDeletedCellData.h
+++ /dev/null
@@ -1,61 +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 __KODELETEDCELLDATA_H__
-#define __KODELETEDCELLDATA_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.
-//
-
-class QTextTableCellFormat;
-class QTextDocumentFragment;
-
-class KoDeletedCellData
-{
-public:
-    KoDeletedCellData(int rowNumber, int columnNumber);
-
-    ~KoDeletedCellData();
-
-    int rowNumber();
-
-    int columnNumber();
-
-    void setCellFormat(const QTextTableCellFormat &cellFormat);
-
-    const QTextTableCellFormat& cellFormat();
-
-    void setCellContent(const QTextDocumentFragment &cellContent);
-
-    const QTextDocumentFragment& cellContent();
-
-private:
-    int row_number;
-    int column_number;
-    QTextTableCellFormat cell_format;
-    QTextDocumentFragment cell_content;
-};
-#endif
diff --git a/libs/kotext/changetracker/KoDeletedCellData_p.h \
b/libs/kotext/changetracker/KoDeletedCellData_p.h new file mode 100644
index 0000000..4a3b80a
--- /dev/null
+++ b/libs/kotext/changetracker/KoDeletedCellData_p.h
@@ -0,0 +1,61 @@
+/* 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 __KODELETEDCELLDATA_H__
+#define __KODELETEDCELLDATA_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.
+//
+
+class QTextTableCellFormat;
+class QTextDocumentFragment;
+
+class KoDeletedCellData
+{
+public:
+    KoDeletedCellData(int rowNumber, int columnNumber);
+
+    ~KoDeletedCellData();
+
+    int rowNumber();
+
+    int columnNumber();
+
+    void setCellFormat(const QTextTableCellFormat &cellFormat);
+
+    const QTextTableCellFormat& cellFormat();
+
+    void setCellContent(const QTextDocumentFragment &cellContent);
+
+    const QTextDocumentFragment& cellContent();
+
+private:
+    int row_number;
+    int column_number;
+    QTextTableCellFormat cell_format;
+    QTextDocumentFragment cell_content;
+};
+#endif
diff --git a/libs/kotext/changetracker/KoDeletedColumnData.cpp \
b/libs/kotext/changetracker/KoDeletedColumnData.cpp index 9074d7f..21ddd46 100644
--- a/libs/kotext/changetracker/KoDeletedColumnData.cpp
+++ b/libs/kotext/changetracker/KoDeletedColumnData.cpp
@@ -23,7 +23,7 @@
 #include <QTextTable>
 
 #include "KoDeletedColumnData.h"
-#include "KoDeletedCellData.h"
+#include "KoDeletedCellData_p.h"
 
 #include <styles/KoTableColumnStyle.h>
 
diff --git a/libs/kotext/changetracker/KoDeletedRowData.cpp \
b/libs/kotext/changetracker/KoDeletedRowData.cpp index 4604f8c..ab2ad1b 100644
--- a/libs/kotext/changetracker/KoDeletedRowData.cpp
+++ b/libs/kotext/changetracker/KoDeletedRowData.cpp
@@ -23,7 +23,7 @@
 #include <QTextTable>
 
 #include "KoDeletedRowData.h"
-#include "KoDeletedCellData.h"
+#include "KoDeletedCellData_p.h"
 
 #include <styles/KoTableRowStyle.h>
 


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

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