Remove useless empty lines

This commit is contained in:
Mario Hüttel 2018-12-22 21:06:52 +01:00
parent 1fe70422db
commit 7e4b915961
1 changed files with 0 additions and 5 deletions

5
main.c
View File

@ -85,8 +85,6 @@ static int start_gui(int argc, char **argv)
g_application_register(G_APPLICATION(gapp), NULL, NULL);
g_signal_connect(gapp, "activate", G_CALLBACK(gapp_activate), &appdata);
menu = g_menu_new();
m_quit = g_menu_new();
m_about = g_menu_new();
@ -102,7 +100,6 @@ static int start_gui(int argc, char **argv)
g_object_unref(m_about);
g_object_unref(menu);
app_status = g_application_run(G_APPLICATION(gapp), argc, argv);
g_object_unref(gapp);
@ -122,7 +119,6 @@ int main(int argc, char **argv)
int scale = 1000;
int app_status;
GOptionEntry entries[] = {
{"tikz", 't', 0, G_OPTION_ARG_NONE, &tikz, "Output TikZ code", NULL },
{"pdf", 'p', 0, G_OPTION_ARG_NONE, &pdf, "Output PDF document", NULL },
@ -192,6 +188,5 @@ int main(int argc, char **argv)
app_status = start_gui(argc, argv);
}
return app_status;
}