Code

non-poppler build fix
[inkscape.git] / src / extension / internal / clear-n_.h
1 /**
2     \file clear-n_.h
3  
4     A way to clear the N_ macro, which is defined as an inline function.
5         Unfortunately, this makes it so it is hard to use in static strings
6         where you only want to translate a small part.  Including this
7         turns it back into a a macro.
8 */
9 /*
10  * Authors:
11  *   Ted Gould <ted@gould.cx>
12  *
13  * Copyright (C) 2006 Authors
14  *
15  * Released under GNU GPL, read the file 'COPYING' for more information
16  */
18 #ifdef N_
19 #undef N_
20 #endif
21 #define N_(x) x
23 /*
24   Local Variables:
25   mode:c++
26   c-file-style:"stroustrup"
27   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
28   indent-tabs-mode:nil
29   fill-column:99
30   End:
31 */
32 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :