diff mcabber/mcabber/logprint.h @ 1783:af3de54ef986

Convert scr_LogPrint() to scr_log_print() Add a #define for compatibility. Same for scr_Write{Incoming,Outgoing}Message() functions.
author Mikael Berthe <mikael@lilotux.net>
date Sun, 14 Mar 2010 12:48:21 +0100
parents e4378fbab5d7
children e6d355e50d7a
line wrap: on
line diff
--- a/mcabber/mcabber/logprint.h	Sun Mar 14 12:30:59 2010 +0100
+++ b/mcabber/mcabber/logprint.h	Sun Mar 14 12:48:21 2010 +0100
@@ -13,9 +13,11 @@
 #define LPRINT_LOGNORM  (LPRINT_NORMAL|LPRINT_LOG)
 
 void scr_print_logwindow(const char *string);
-void scr_LogPrint(unsigned int flag, const char *fmt, ...) G_GNUC_PRINTF (2, 3);
+void scr_log_print(unsigned int flag, const char *fmt, ...) G_GNUC_PRINTF (2, 3);
+void scr_do_update(void);
 
-void scr_do_update(void);
+// For backward compatibility:
+#define scr_LogPrint    scr_log_print
 
 #endif /* __MCABBER_LOGPRINT_H__ */