summaryrefslogtreecommitdiff
blob: 2ab229f81a0585512373bc0712b5f01a80468ba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- pinedit/fileutil.h.original	2006-04-01 12:16:59.000000000 +0200
+++ pinedit/fileutil.h	2006-04-01 12:17:42.000000000 +0200
@@ -36,14 +36,14 @@
   int writeGroup(QTextStream & file, Group * Group);
   int writeShape(QTextStream & file, Shape3D * shape);
   int writeBehavior(QTextStream & file, Behavior * beh);
-  inline void FileUtil::incIndent() {
+  inline void incIndent() {
     ++m_iIndent;
   };
-  inline void FileUtil::decIndent() {
+  inline void decIndent() {
     --m_iIndent;
     if (m_iIndent < 0) m_iIndent = 0;
   };
-  inline void FileUtil::resetIndent() {
+  inline void resetIndent() {
     m_iIndent = 0;
   };
   PinEditDoc * p_Doc;