~valavanisalex/ubuntu/oneiric/inkscape/inkscape_0.48.1-2ubuntu5

« back to all changes in this revision

Viewing changes to src/marker-status.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Wolfram Quester
  • Date: 2004-06-02 10:35:45 UTC
  • Revision ID: james.westby@ubuntu.com-20040602103545-q3x0q6xd2k1yj0fr
Tags: upstream-0.38.1
ImportĀ upstreamĀ versionĀ 0.38.1

Show diffs side-by-side

added added

removed removed

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