summaryrefslogtreecommitdiff
path: root/src/gui/linkhandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/linkhandler.h')
-rw-r--r--src/gui/linkhandler.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gui/linkhandler.h b/src/gui/linkhandler.h
index ea1b25c8..30267f87 100644
--- a/src/gui/linkhandler.h
+++ b/src/gui/linkhandler.h
@@ -1,9 +1,8 @@
/*
- * Aethyra
+ * The Mana World
* Copyright (C) 2004 The Mana World Development Team
*
- * This file is part of Aethyra based on original code
- * from The Mana World.
+ * This file is part of The Mana World.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -25,6 +24,8 @@
#include <string>
+#include <string>
+
/**
* A simple interface to windows that need to handle links from BrowserBox
* widget.
@@ -34,7 +35,7 @@ class LinkHandler
public:
virtual ~LinkHandler() { }
- virtual void handleLink(const std::string& link) = 0;
+ virtual void handleLink(const std::string &link) = 0;
};
#endif