summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libgui.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-26 22:31:01 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-26 22:31:01 +0000
commitcc279c7aa6e04db390bed9bc28f3d2f48f2ea6d7 (patch)
tree1cfe922ec090a5eef886ca592616dab1e8190997 /crawl-ref/source/libgui.h
parent54aec4d505c1ae364d89c2b464b24204c24e1f96 (diff)
downloadcrawl-ref-cc279c7aa6e04db390bed9bc28f3d2f48f2ea6d7.tar.gz
crawl-ref-cc279c7aa6e04db390bed9bc28f3d2f48f2ea6d7.zip
Kill hard tabs, and add whitespace fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6158 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/libgui.h')
-rw-r--r--crawl-ref/source/libgui.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/libgui.h b/crawl-ref/source/libgui.h
index 49cf753940..30bbafdf3f 100644
--- a/crawl-ref/source/libgui.h
+++ b/crawl-ref/source/libgui.h
@@ -56,13 +56,13 @@ class mouse_control
public:
mouse_control(int mode)
{
- oldmode = mouse_get_mode();
- mouse_set_mode(mode);
+ oldmode = mouse_get_mode();
+ mouse_set_mode(mode);
}
~mouse_control()
{
- mouse_set_mode(oldmode);
+ mouse_set_mode(oldmode);
}
private:
int oldmode;