summaryrefslogtreecommitdiff
blob: cc13c1f774f46d8bbb5539e0ebbc39cc94abfe95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
diff -Naur gpspoint-2.030521/src/constants.h gpspoint-2.030521-hk/src/constants.h
--- gpspoint-2.030521/src/constants.h	2003-04-14 18:23:32.000000000 +0200
+++ gpspoint-2.030521-hk/src/constants.h	2006-11-20 10:38:22.000000000 +0100
@@ -30,7 +30,7 @@
 class Constants
 {
    public:
-      Constants::Constants(void);
+      Constants(void);
 
    protected:
       static const g_byte
diff -Naur gpspoint-2.030521/src/newsymbols.h gpspoint-2.030521-hk/src/newsymbols.h
--- gpspoint-2.030521/src/newsymbols.h	2003-05-20 11:54:34.000000000 +0200
+++ gpspoint-2.030521-hk/src/newsymbols.h	2006-11-20 10:40:44.000000000 +0100
@@ -28,7 +28,7 @@
 struct NewSymbols
 {
         public: 
-                NewSymbols::NewSymbols(void);   
+                NewSymbols(void);   
 
         protected:
                 string number2symbol(g_int) const;     
diff -Naur gpspoint-2.030521/src/oldsymbols.h gpspoint-2.030521-hk/src/oldsymbols.h
--- gpspoint-2.030521/src/oldsymbols.h	2003-05-20 11:54:34.000000000 +0200
+++ gpspoint-2.030521-hk/src/oldsymbols.h	2006-11-20 10:40:27.000000000 +0100
@@ -29,7 +29,7 @@
 struct OldSymbols
 {
 	public: 
-		OldSymbols::OldSymbols(void);	
+		OldSymbols(void);	
 
 	protected:
 		/// returns symbol as a string given a symbol ID
diff -Naur gpspoint-2.030521/src/records_type.h gpspoint-2.030521-hk/src/records_type.h
--- gpspoint-2.030521/src/records_type.h	2003-04-14 18:23:33.000000000 +0200
+++ gpspoint-2.030521-hk/src/records_type.h	2006-11-20 10:41:16.000000000 +0100
@@ -41,10 +41,10 @@
    public: 
 
    /// constructor 
-   Records_Type::Records_Type(void);
+   Records_Type(void);
 
    /// calls set with the given Packet
-   Records_Type::Records_Type(Packet);
+   Records_Type(Packet);
 
    /// resets internal data
    void clear(void);
diff -Naur gpspoint-2.030521/src/wpt_type.h gpspoint-2.030521-hk/src/wpt_type.h
--- gpspoint-2.030521/src/wpt_type.h	2003-05-20 11:54:34.000000000 +0200
+++ gpspoint-2.030521-hk/src/wpt_type.h	2006-11-20 10:39:51.000000000 +0100
@@ -99,10 +99,10 @@
  protected:
 
    /// semicircle to double 
-   double Wpt_Type::s2d(g_long sc);
+   double s2d(g_long sc);
 
    /// double to semicicle 
-   g_long Wpt_Type::d2s(double deg);
+   g_long d2s(double deg);
 
    string   name;
    string   comment;