diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-17 18:55:35 +0200 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-17 18:55:35 +0200 |
| commit | 3d7e4711921a936688441ea06c4691a67d5809be (patch) | |
| tree | 2e9579ccfe53d00bb2b98d79d4fd703b7e91aad5 /src/cli/CLI.cpp | |
| parent | 276100c5e7b543dfcaa1dc9f4ee748ca9032d587 (diff) | |
| download | abrt-3d7e4711921a936688441ea06c4691a67d5809be.tar.gz abrt-3d7e4711921a936688441ea06c4691a67d5809be.tar.xz abrt-3d7e4711921a936688441ea06c4691a67d5809be.zip | |
*: move NLS include and #define _ to abrtlib.h
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/cli/CLI.cpp')
| -rw-r--r-- | src/cli/CLI.cpp | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/src/cli/CLI.cpp b/src/cli/CLI.cpp index 276703dc..d1cc13d8 100644 --- a/src/cli/CLI.cpp +++ b/src/cli/CLI.cpp @@ -15,6 +15,12 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ +#if HAVE_CONFIG_H +# include <config.h> +#endif +#if HAVE_LOCALE_H +# include <locale.h> +#endif #include <getopt.h> #include "abrt_exception.h" #include "abrtlib.h" @@ -22,18 +28,6 @@ #include "dbus_common.h" #include "report.h" #include "dbus.h" -#if HAVE_CONFIG_H -# include <config.h> -#endif -#if HAVE_LOCALE_H -# include <locale.h> -#endif -#if ENABLE_NLS -# include <libintl.h> -# define _(S) gettext(S) -#else -# define _(S) (S) -#endif /** Creates a localized string from crash time. */ static char *localize_crash_time(const char *timestr) |
