Skip to content

Commit 9d74c5b

Browse files
author
Gary Huang
committed
Purify
1 parent 19f4727 commit 9d74c5b

File tree

17 files changed

+33
-71
lines changed

17 files changed

+33
-71
lines changed

include/Processing

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@
77
#define PROCESSING
88

99
#include "processing.h"
10-
#include "mouse.h"
1110

1211
#endif // PROCESSING

src/GuiEngine/canvas.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#ifndef PCANVAS_H
55
#define PCANVAS_H
66

7-
#include "global.h"
7+
#include "pglobal.h"
88
#include <list>
99

1010
PROCESSING_BEGIN_NAMESPACE

src/GuiEngine/guiengine.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#ifndef GUIENGINE_H
55
#define GUIENGINE_H
66

7-
#include "global.h"
7+
#include "pglobal.h"
88
#include "window.h"
99
#include "canvas.h"
1010

src/GuiEngine/pelement.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#ifndef P_PELEMENT_H
55
#define P_PELEMENT_H
66

7-
#include "global.h"
7+
#include "pglobal.h"
88

99
PROCESSING_BEGIN_NAMESPACE
1010

src/GuiEngine/window.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#ifndef PWINDOW_H
55
#define PWINDOW_H
66

7-
#include "global.h"
7+
#include "pglobal.h"
88

99
PROCESSING_BEGIN_NAMESPACE
1010

src/Mouse/mouse.cpp

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/Mouse/mouse.h

Lines changed: 0 additions & 27 deletions
This file was deleted.

src/Mouse/mouse.pri

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/Args/args.h renamed to src/PArgs/pargs.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/**
22
* Author: Gary Huang <gh.nctu+code@gmail.com>
33
*/
4-
#ifndef ARGS_H
5-
#define ARGS_H
4+
#ifndef PARGS_H
5+
#define PARGS_H
66

7-
#include "global.h"
7+
#include "pglobal.h"
88

99
PROCESSING_BEGIN_NAMESPACE
1010

@@ -21,4 +21,4 @@ class Args
2121

2222
PROCESSING_END_NAMESPACE
2323

24-
#endif // ARGS_H
24+
#endif // PARGS_H
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Author: Gary Huang <gh.nctu+code@gmail.com>
2-
HEADERS += $$PWD/args.h
2+
HEADERS += $$PWD/pargs.h

0 commit comments

Comments
 (0)