[aseprite] 142/250: Add m_ prefix to OSXWindowDelegate fields

Tobias Hansen thansen at moszumanska.debian.org
Sun Dec 20 15:27:22 UTC 2015


This is an automated email from the git hooks/post-receive script.

thansen pushed a commit to branch master
in repository aseprite.

commit 0db4c1c66495cec8998efdc4a529ca8732729888
Author: David Capello <davidcapello at gmail.com>
Date:   Wed Oct 7 16:07:14 2015 -0300

    Add m_ prefix to OSXWindowDelegate fields
---
 src/she/osx/window.mm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/she/osx/window.mm b/src/she/osx/window.mm
index 379157b..15d6969 100644
--- a/src/she/osx/window.mm
+++ b/src/she/osx/window.mm
@@ -16,8 +16,8 @@
 
 @interface OSXWindowDelegate : NSObject
 {
-  she::EventQueue* queue;
-  OSXWindow* window;
+  she::EventQueue* m_queue;
+  OSXWindow* m_window;
 }
 - (OSXWindowDelegate*)initWithWindow:(OSXWindow*)window;
 - (BOOL)windowShouldClose:(id)sender;
@@ -32,16 +32,16 @@
 
 @implementation OSXWindowDelegate
 
-- (OSXWindowDelegate*)initWithWindow:(OSXWindow*)aWindow
+- (OSXWindowDelegate*)initWithWindow:(OSXWindow*)window
 {
-  window = aWindow;
-  queue = she::instance()->eventQueue();
+  m_window = window;
+  m_queue = she::instance()->eventQueue();
   return self;
 }
 
 - (BOOL)windowShouldClose:(id)sender
 {
-  [window closeDelegate]->notifyClose();
+  [m_window closeDelegate]->notifyClose();
   return YES;
 }
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/aseprite.git



More information about the Pkg-games-commits mailing list