From 90082628e6b06917c7e462979c0c953ae063b843 Mon Sep 17 00:00:00 2001 From: Ingo Ruhnke Date: Sun, 17 Aug 2014 21:12:22 +0200 Subject: [PATCH] Moved global dictionary into gettext.cpp, no need to have it in globals.cpp --- src/util/gettext.cpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/util/gettext.cpp diff --git a/src/util/gettext.cpp b/src/util/gettext.cpp new file mode 100644 index 000000000..0dcb56ed7 --- /dev/null +++ b/src/util/gettext.cpp @@ -0,0 +1,21 @@ +// SuperTux +// Copyright (C) 2014 Ingo Ruhnke +// +// 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 . + +#include "util/gettext.hpp" + +std::unique_ptr g_dictionary_manager = nullptr; + +/* EOF */ -- 2.11.0