Lines Matching defs:format
36 MessageId MessageStack::pushF(MessageType type, gchar const *format, ...)
39 va_start(args, format);
40 MessageId id=pushVF(type, format, args);
45 MessageId MessageStack::pushVF(MessageType type, gchar const *format, va_list args)
48 gchar *message=g_strdup_vprintf(format, args);
92 MessageId MessageStack::flashF(MessageType type, gchar const *format, ...) {
94 va_start(args, format);
95 MessageId id = flashVF(type, format, args);
100 MessageId MessageStack::flashVF(MessageType type, gchar const *format, va_list args)
102 gchar *message=g_strdup_vprintf(format, args);