diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-13 00:14:02 -0500 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-04 04:36:13 +0200 |
commit | 8cc6ae08fc114bf7b1987c51441cf75414428729 (patch) | |
tree | 077cbbdb79bd53d7652c4a3f85fbf1a30ef98c9c /kig | |
parent | c51a55aa4b03a057214a33a281b67efc949a65e6 (diff) | |
download | tdeedu-8cc6ae08fc114bf7b1987c51441cf75414428729.tar.gz tdeedu-8cc6ae08fc114bf7b1987c51441cf75414428729.zip |
Fix inadvertent "TQ" changes.
(cherry picked from commit c3f2c830d0394a175f308b1866b09143e28b2fe0)
Diffstat (limited to 'kig')
-rw-r--r-- | kig/filters/kgeo-resource.h | 2 | ||||
-rw-r--r-- | kig/filters/kseg-defs.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/kig/filters/kgeo-resource.h b/kig/filters/kgeo-resource.h index 9a392ac8..f7af0f64 100644 --- a/kig/filters/kgeo-resource.h +++ b/kig/filters/kgeo-resource.h @@ -71,7 +71,7 @@ #define ID_FILE_PRINT 10080 -#define ID_FILE_TQUIT 10090 +#define ID_FILE_QUIT 10090 /////////////////////////////////////////////////////////////////// // Edit-menu entries diff --git a/kig/filters/kseg-defs.h b/kig/filters/kseg-defs.h index 5319afaf..c9a57447 100644 --- a/kig/filters/kseg-defs.h +++ b/kig/filters/kseg-defs.h @@ -61,7 +61,7 @@ inline int SIGN(double x) { return (x < 0) ? -1 : 1; } inline int INTRAND(int a, int b) { return TQMIN(a, b) + rand() % abs(a - b); } #define SQR(x) ((x) * (x)) #define CUBE(x) ((x) * (x) * (x)) -#define TQUAD(x) (((x) * (x)) * ((x) * (x))) +#define QUAD(x) (((x) * (x)) * ((x) * (x))) enum G_Type { @@ -254,9 +254,9 @@ enum MenuIDs ID_CONSTRUCTION_MAKE_INITIAL, ID_CONSTRUCTION_RECURSE, - ID_PLAY_TQUICKPLAY, + ID_PLAY_QUICKPLAY, - ID_TQUICKPLAY_SET_DIRECTORY, + ID_QUICKPLAY_SET_DIRECTORY, ID_FILE_RECENTLIST_START //should be the last entry }; |