Fixed typo. Spotted by korli.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39611 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2010-11-24 16:51:34 +00:00
parent 98c0eab3d4
commit 5bbbdc9182
+3 -3
View File
@@ -67,7 +67,7 @@ struct DefaultWindowBehaviour::State {
{ {
} }
void UpateFFMFocus(bool isFake) void UpdateFFMFocus(bool isFake)
{ {
// change focus in FFM mode // change focus in FFM mode
DesktopSettings desktopSettings(fDesktop); DesktopSettings desktopSettings(fDesktop);
@@ -184,7 +184,7 @@ struct DefaultWindowBehaviour::MouseTrackingState : State {
fLastMousePosition += delta; fLastMousePosition += delta;
// update the FFM focus // update the FFM focus
UpateFFMFocus(isFake); UpdateFFMFocus(isFake);
} }
virtual void MouseMovedAction(BPoint& delta, bigtime_t now) = 0; virtual void MouseMovedAction(BPoint& delta, bigtime_t now) = 0;
@@ -437,7 +437,7 @@ struct DefaultWindowBehaviour::DecoratorButtonState : State {
_RedrawDecorator(message); _RedrawDecorator(message);
// update the FFM focus // update the FFM focus
UpateFFMFocus(isFake); UpdateFFMFocus(isFake);
} }
private: private: