From 4daf4c47b890aac88f31874892fd0bae1e7efcbb Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 14 Mar 2005 08:24:39 +0000 Subject: Fix method names to comply to our coding standards svn-id: r17134 --- common/system.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'common') diff --git a/common/system.h b/common/system.h index 0c66f77334..6ae8a659a4 100644 --- a/common/system.h +++ b/common/system.h @@ -327,10 +327,10 @@ public: virtual void copyRectToOverlay(const OverlayColor *buf, int pitch, int x, int y, int w, int h) = 0; virtual int16 getOverlayHeight() { return getHeight(); } virtual int16 getOverlayWidth() { return getWidth(); } - virtual int ScreenToOverlayX(int x) { return x; } - virtual int ScreenToOverlayY(int y) { return y; } - virtual int OverlayToScreenX(int x) { return x; } - virtual int OverlayToScreenY(int y) { return y; } + virtual int screenToOverlayX(int x) { return x; } + virtual int screenToOverlayY(int y) { return y; } + virtual int overlayToScreenX(int x) { return x; } + virtual int overlayToScreenY(int y) { return y; } /** * Convert the given RGB triplet into an OverlayColor. A OverlayColor can -- cgit v1.2.3