diff --git a/bitmap/goBitmap.h b/bitmap/goBitmap.h index 6871e9e..7bf4893 100644 --- a/bitmap/goBitmap.h +++ b/bitmap/goBitmap.h @@ -155,7 +155,9 @@ MMBitmapRef bitmap_from_string(const char *str){ MMBitmapRef bitmap; MMBMPStringError err; - if ((bitmap = createMMBitmapFromString((unsigned char*)str, len, &err)) == NULL) { + if ((bitmap = createMMBitmapFromString( + (unsigned char*)str, len, &err)) + == NULL) { return NULL; } diff --git a/window/alert.h b/window/alert.h index 9ef5551..9eb5e9c 100644 --- a/window/alert.h +++ b/window/alert.h @@ -11,7 +11,7 @@ /* Displays alert with given attributes, and blocks execution until the user * responds. Returns 0 if defaultButton was pressed, 1 if cancelButton was * pressed, or -1 if an error occurred. */ -int showAlert(const char *title, const char *msg, const char *defaultButton, - const char *cancelButton); +int showAlert(const char *title, const char *msg, + const char *defaultButton, const char *cancelButton); #endif /* ALERT_H */ diff --git a/window/goWindow.h b/window/goWindow.h index 638e6d1..af2cc89 100644 --- a/window/goWindow.h +++ b/window/goWindow.h @@ -11,8 +11,8 @@ #include "alert_c.h" #include "window.h" -int show_alert(const char *title, const char *msg, const char *defaultButton, - const char *cancelButton){ +int show_alert(const char *title, const char *msg, + const char *defaultButton, const char *cancelButton){ int alert = showAlert(title, msg, defaultButton, cancelButton); return alert;