From 8e1ef5a7ffe67a66abf4b73e34ee34129b7a13da Mon Sep 17 00:00:00 2001 From: Stelios Bounanos Date: Thu, 18 Dec 2008 05:25:21 +0000 Subject: [PATCH] Fix QRZ lookup type enum Rearrange enum definition for compatibility with previous alphas, and (hopefully) 3.03 --- src/include/lookupcall.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lookupcall.h b/src/include/lookupcall.h index 45448836..6aabf768 100644 --- a/src/include/lookupcall.h +++ b/src/include/lookupcall.h @@ -2,6 +2,6 @@ #define LOOKUPCALL_H extern void CALLSIGNquery(); -enum qrz_query_t { QRZ_EXIT = -1, QRZNONE, QRZCD, QRZNET, QRZHTML, HAMCALLNET, HAMCALLHTML }; +enum qrz_query_t { QRZ_EXIT = -1, QRZNONE, QRZNET, QRZCD, HAMCALLNET, QRZHTML, HAMCALLHTML }; #endif