diff gui/interface.c @ 33289:be7d8c249dfd

Cosmetic: uncrustify related indent adjustments Comments may now be nicely indented after the mp-uncrustify-style.cfg update. Slightly change audio_equ_row definition so that uncrustify doesn't get confused and does proper indenting.
author ib
date Thu, 05 May 2011 11:56:34 +0000
parents 445a104bfb0f
children 552f1f7731c8
line wrap: on
line diff
--- a/gui/interface.c	Thu May 05 11:13:33 2011 +0000
+++ b/gui/interface.c	Thu May 05 11:56:34 2011 +0000
@@ -410,13 +410,13 @@
 }
 
 // NOTE TO MYSELF: Before calling guiInit(), MPlayer calls GUI functions
-// cfg_read() and import_initial_playtree_into_gui(). Only
-// after guiInit() has been called successfully, guiDone()
-// (and thus guiExit()) will be executed by MPlayer on exit.
-// In other words, any MPlayer's exit between cfg_read() and
-// guiInit() will not execute guiDone().
-// With this function it is at least possible to handle
-// GUI's own abortions during (and before) guiInit().
+//                 cfg_read() and import_initial_playtree_into_gui(). Only
+//                 after guiInit() has been called successfully, guiDone()
+//                 (and thus guiExit()) will be executed by MPlayer on exit.
+//                 In other words, any MPlayer's exit between cfg_read() and
+//                 guiInit() will not execute guiDone().
+//                 With this function it is at least possible to handle
+//                 GUI's own abortions during (and before) guiInit().
 void guiExit(int how)
 {
     if (!initialized || (how == DONE)) {
@@ -1489,12 +1489,12 @@
 }
 
 // NOTE TO MYSELF: This function is nonsense.
-// MPlayer should pass messages to the GUI
-// which must decide then which message has
-// to be shown (MSGL_FATAL, for example).
-// But with this function it is at least
-// possible to show GUI's very critical or
-// abort messages.
+//                 MPlayer should pass messages to the GUI
+//                 which must decide then which message has
+//                 to be shown (MSGL_FATAL, for example).
+//                 But with this function it is at least
+//                 possible to show GUI's very critical or
+//                 abort messages.
 void gmp_msg(int mod, int lev, const char *format, ...)
 {
     char msg[512];