1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-17 08:01:36 +00:00
freebsd-ports/games/pinedit/files/patch-pinedit__fileutil.h
Max Brazhnikov 4a89dc207d Add new port games/pinedit:
The editor for Emilia Pinball.

WWW:	http://pinball.sourceforge.net/

PR:		ports/156138
Submitted by:	Stephen Hurd <shurd at sasktel.net>
2011-04-07 18:54:28 +00:00

21 lines
659 B
C

--- ./pinedit/fileutil.h.orig 2003-03-30 22:44:13.000000000 +0400
+++ ./pinedit/fileutil.h 2011-04-07 10:30:29.996841054 +0400
@@ -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;