Browse Source

Move pgettext_aux() declaration earlier

Some compilers get upset if a declaration comes after the definition.
tags/v1.10.90
Pierre Ossman 3 years ago
parent
commit
a336f174cb
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      vncviewer/i18n.h

+ 2
- 2
vncviewer/i18n.h View File

#ifndef _I18N_H #ifndef _I18N_H
#define _I18N_H 1 #define _I18N_H 1


#include "gettext.h"

/* Need to tell gcc that pgettext() doesn't screw up format strings */ /* Need to tell gcc that pgettext() doesn't screw up format strings */
#ifdef __GNUC__ #ifdef __GNUC__
static const char * static const char *
int category) __attribute__ ((format_arg (3))); int category) __attribute__ ((format_arg (3)));
#endif #endif


#include "gettext.h"

#define _(String) gettext (String) #define _(String) gettext (String)
#define p_(Context, String) pgettext (Context, String) #define p_(Context, String) pgettext (Context, String)
#define N_(String) gettext_noop (String) #define N_(String) gettext_noop (String)

Loading…
Cancel
Save