diff --git a/bitmap/goBitmap.h b/bitmap/goBitmap.h index 72a0c11..de71f80 100644 --- a/bitmap/goBitmap.h +++ b/bitmap/goBitmap.h @@ -54,13 +54,13 @@ MMBitmapRef aOpenBitmap(char *path, uint16_t ttype){ MMIOError err; bitmap = newMMBitmapFromFile(path, ttype, &err); - // printf("....%zd\n",bitmap->width); + // printf("....%zd\n", bitmap->width); return bitmap; } char *aSaveBitmap(MMBitmapRef bitmap, char *path, uint16_t type){ - if (saveMMBitmapToFile(bitmap, path,(MMImageType) type) != 0) { + if (saveMMBitmapToFile(bitmap, path, (MMImageType) type) != 0) { return "Could not save image to file."; }else{ saveMMBitmapToFile(bitmap, path, (MMImageType) type); @@ -78,7 +78,7 @@ char *aTostringBitmap(MMBitmapRef bitmap){ return buf; } -MMBitmapRef aGetPortion(MMBitmapRef bit_map,MMRect rect){ +MMBitmapRef aGetPortion(MMBitmapRef bit_map, MMRect rect){ // MMRect rect; MMBitmapRef portion = NULL; diff --git a/event/goEvent.h b/event/goEvent.h index 9be88e6..d09c1d8 100644 --- a/event/goEvent.h +++ b/event/goEvent.h @@ -146,7 +146,7 @@ void dispatch_proc(iohook_event * const event) { char buf[6]; #endif - sprintf(buf, "%lc",(uint16_t) event->data.keyboard.keychar); + sprintf(buf, "%lc", (uint16_t) event->data.keyboard.keychar); #ifdef WE_REALLY_WANT_A_POINTER free (buf); diff --git a/window/goWindow.h b/window/goWindow.h index dbd9682..616e764 100644 --- a/window/goWindow.h +++ b/window/goWindow.h @@ -13,7 +13,7 @@ int aShowAlert(const char *title, const char *msg, const char *defaultButton, const char *cancelButton){ - int alert = showAlert(title,msg,defaultButton,cancelButton); + int alert = showAlert(title, msg, defaultButton, cancelButton); return alert; } @@ -64,7 +64,7 @@ MData aGetActive(){ char* aGetTitle(){ char* title = GetTitle(); - // printf("title::::%s\n",title ); + // printf("title::::%s\n", title ); return title; }