2.5: fix for last commit, left in debug print.

This commit is contained in:
Brecht Van Lommel
2009-07-09 18:10:35 +00:00
parent 403dc0f25a
commit a2a04bab8a
2 changed files with 2 additions and 2 deletions

View File

@@ -258,7 +258,7 @@ public:
* @param grab The new grab state of the cursor. * @param grab The new grab state of the cursor.
* @return Indication of success. * @return Indication of success.
*/ */
virtual GHOST_TSuccess setCursorGrab(bool grab) { printf("?! grab\n"); return GHOST_kSuccess; }; virtual GHOST_TSuccess setCursorGrab(bool grab) { return GHOST_kSuccess; };
}; };

View File

@@ -230,7 +230,7 @@ protected:
* Sets the cursor grab on the window using * Sets the cursor grab on the window using
* native window system calls. * native window system calls.
*/ */
virtual GHOST_TSuccess setWindowCursorGrab(bool grab) = 0; virtual GHOST_TSuccess setWindowCursorGrab(bool grab) { return GHOST_kSuccess; };
/** /**
* Sets the cursor shape on the window using * Sets the cursor shape on the window using