Remove unused common defines

This commit is contained in:
Seth Hillbrand 2020-01-06 05:55:06 -08:00
parent 84048262bd
commit 49e3542662
2 changed files with 0 additions and 20 deletions

View File

@ -55,8 +55,6 @@ using KIGFX::COLOR4D;
* application class.
*/
COLOR4D g_GhostColor;
#if defined( _WIN32 ) && defined( DEBUG )
// a wxAssertHandler_t function to filter wxWidgets alert messages when reading/writing a file

View File

@ -48,11 +48,9 @@
#include <type_traits>
#include <typeinfo>
class wxAboutDialogInfo;
class SEARCH_STACK;
class REPORTER;
/**
* timestamp_t is our type to represent unique IDs for all kinds of elements;
* historically simply the timestamp when they were created.
@ -66,18 +64,6 @@ typedef uint32_t timestamp_t;
/// default name for nameless projects
#define NAMELESS_PROJECT wxT( "noname" )
/// Pseudo key codes for command panning
enum pseudokeys {
EDA_PANNING_UP_KEY = 1,
EDA_PANNING_DOWN_KEY,
EDA_PANNING_LEFT_KEY,
EDA_PANNING_RIGHT_KEY,
EDA_ZOOM_IN_FROM_MOUSE,
EDA_ZOOM_OUT_FROM_MOUSE,
EDA_ZOOM_CENTER_FROM_MOUSE
};
/// Frequent text rotations, used with {Set,Get}TextAngle(),
/// in 0.1 degrees for now, hoping to migrate to degrees eventually.
#define TEXT_ANGLE_HORIZ 0
@ -120,10 +106,6 @@ enum class EDA_UNITS
};
/// Draw color for moving objects.
extern KIGFX::COLOR4D g_GhostColor;
/**
* Instantiate the current locale within a scope in which you are expecting
* exceptions to be thrown.