diff --git a/kmahjongg/HighScore.h b/kmahjongg/HighScore.h index 6c2342ce..38df5454 100644 --- a/kmahjongg/HighScore.h +++ b/kmahjongg/HighScore.h @@ -11,7 +11,7 @@ class TQLabel; const int numScores = 10; -typedef struct HiScoreEntry { +struct HiScoreEntry { TQString name; long board; long score; @@ -19,7 +19,7 @@ typedef struct HiScoreEntry { }; -typedef struct TableInstance { +struct TableInstance { TQString name; HiScoreEntry entries[numScores]; TableInstance *next;