Code

moving trunk for module inkscape
[inkscape.git] / src / marker-status.cpp
2 void marker_status(char const *format, ...)
3 {
4     /* Don't bother inlining this.  Not called often, and eventually all
5        calls will be removed anyway. */
6 #if 0 /* Bryce sets this to 1. */
7     va_list args;
8     va_start(args, format);
9     g_logv(marker_status_INITIAL_ARGS, format, args);
10     va_end(args);
11 #endif
12 }
14 /*
15   Local Variables:
16   mode:c++
17   c-file-style:"stroustrup"
18   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
19   indent-tabs-mode:nil
20   fill-column:99
21   End:
22 */
23 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :