diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/editor.xml b/.idea/editor.xml new file mode 100644 index 0000000..b0d69ef --- /dev/null +++ b/.idea/editor.xml @@ -0,0 +1,483 @@ + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..bedf918 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,13 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/ui.c b/src/ui.c index 38dac4d..eeb2d9c 100644 --- a/src/ui.c +++ b/src/ui.c @@ -91,7 +91,7 @@ void newTime(void) if (newtime == NULL){ printf("Die Liste ist leer?!\n"); } - printf(" Neue Zeit eigneben: "); + printf(" Neue Zeit eingeben: "); if(scanf("%d",&newTime)!=1) { dump_buffer(stdin); diff --git a/src/ui.h b/src/ui.h index 750e9bf..3eba956 100644 --- a/src/ui.h +++ b/src/ui.h @@ -6,7 +6,7 @@ typedef struct task_elements{ char name; int priority; }; -typedef struct time{ +typedef struct time_e{ int time; };