]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Corrected search in steps list
authorc vw <dl1ycf@darc.de>
Fri, 21 May 2021 18:00:42 +0000 (20:00 +0200)
committerc vw <dl1ycf@darc.de>
Fri, 21 May 2021 18:00:42 +0000 (20:00 +0200)
vfo_menu.c

index 8cef9d60a464a2ced83e86f1f01c560bdd9f58db..cac68ef28010295b19298832bbdf2d01f3aa74f4 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C)
+ Copyright (C)
 * 2016 - John Melton, G0ORX/N6LYT
 *
 * This program is free software; you can redistribute it and/or
@@ -293,13 +293,11 @@ void vfo_menu(GtkWidget *parent,int vfo) {
   gtk_grid_attach(GTK_GRID(grid),vfo_label,3,3,1,1);
 
   GtkWidget *vfo_b=gtk_combo_box_text_new();
-  i=0;
-  while(steps[i]!=0) {
+  for (i=0; i<STEPS; i++) {
     gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(vfo_b),NULL,step_labels[i]);
     if(steps[i]==step) {
       gtk_combo_box_set_active (GTK_COMBO_BOX(vfo_b), i);
     }
-    i++;
   }
   g_signal_connect(vfo_b,"changed",G_CALLBACK(vfo_cb),NULL);
   gtk_grid_attach(GTK_GRID(grid),vfo_b,4,3,1,1);