Skip to content
Snippets Groups Projects
Commit eb89ac5a authored by Morris Jette's avatar Morris Jette
Browse files

Remove redundant GTK entry create

bug 403
parent 920b1862
No related branches found
No related tags found
No related merge requests found
...@@ -514,7 +514,6 @@ extern void create_create_popup(GtkAction *action, gpointer user_data) ...@@ -514,7 +514,6 @@ extern void create_create_popup(GtkAction *action, gpointer user_data)
if (!strcmp(name, "batch_job")) { if (!strcmp(name, "batch_job")) {
sview_search_info.search_type = CREATE_BATCH_JOB; sview_search_info.search_type = CREATE_BATCH_JOB;
entry = create_entry();
label = gtk_label_new( label = gtk_label_new(
"Batch job submission specifications\n\n" "Batch job submission specifications\n\n"
"Specify size (task and/or node count) plus the\n" "Specify size (task and/or node count) plus the\n"
...@@ -530,7 +529,6 @@ extern void create_create_popup(GtkAction *action, gpointer user_data) ...@@ -530,7 +529,6 @@ extern void create_create_popup(GtkAction *action, gpointer user_data)
entry = create_job_entry(job_msg, model, &iter); entry = create_job_entry(job_msg, model, &iter);
} else if (!strcmp(name, "partition")) { } else if (!strcmp(name, "partition")) {
sview_search_info.search_type = CREATE_PARTITION; sview_search_info.search_type = CREATE_PARTITION;
entry = create_entry();
label = gtk_label_new( label = gtk_label_new(
"Partition creation specifications\n\n" "Partition creation specifications\n\n"
"Specify Name. All other fields are optional."); "Specify Name. All other fields are optional.");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment