Moved global dictionary into gettext.cpp, no need to have it in globals.cpp
authorIngo Ruhnke <grumbel@gmail.com>
Sun, 17 Aug 2014 19:12:22 +0000 (21:12 +0200)
committerIngo Ruhnke <grumbel@gmail.com>
Sun, 17 Aug 2014 20:34:30 +0000 (22:34 +0200)
src/util/gettext.cpp [new file with mode: 0644]

diff --git a/src/util/gettext.cpp b/src/util/gettext.cpp
new file mode 100644 (file)
index 0000000..0dcb56e
--- /dev/null
@@ -0,0 +1,21 @@
+//  SuperTux
+//  Copyright (C) 2014 Ingo Ruhnke <grumbel@gmail.com>
+//
+//  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
+//  the Free Software Foundation, either version 3 of the License, or
+//  (at your option) any later version.
+//
+//  This program is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+//  GNU General Public License for more details.
+//
+//  You should have received a copy of the GNU General Public License
+//  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+#include "util/gettext.hpp"
+
+std::unique_ptr<tinygettext::DictionaryManager> g_dictionary_manager = nullptr;
+
+/* EOF */