mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-14 02:58:08 +00:00
Removed HEIGHT and WIDTH since the windows will anyways start maximized
This commit is contained in:
@ -3,9 +3,6 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#define WIDTH 400
|
|
||||||
#define HEIGHT 640
|
|
||||||
|
|
||||||
char USAGE[] =
|
char USAGE[] =
|
||||||
"is a helper utility for rendering the GNUplot graphs in a GTK window. This allows to real time resizing, scrolling, and cursor positioning features while viewing the graph. This utility also provides options to hide graphs using check buttons.\n \
|
"is a helper utility for rendering the GNUplot graphs in a GTK window. This allows to real time resizing, scrolling, and cursor positioning features while viewing the graph. This utility also provides options to hide graphs using check buttons.\n \
|
||||||
\n \
|
\n \
|
||||||
@ -43,7 +40,6 @@ int main(int argc, char **argv) {
|
|||||||
gtk_init(&argc, &argv);
|
gtk_init(&argc, &argv);
|
||||||
|
|
||||||
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
|
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
|
||||||
gtk_window_set_default_size(GTK_WINDOW(window), WIDTH, HEIGHT);
|
|
||||||
gtk_window_set_title(GTK_WINDOW(window), "Graph drawing");
|
gtk_window_set_title(GTK_WINDOW(window), "Graph drawing");
|
||||||
gtk_container_set_border_width(GTK_CONTAINER(window), 10);
|
gtk_container_set_border_width(GTK_CONTAINER(window), 10);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user