aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/Platform.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/Platform.h b/include/Platform.h
index d23a932e4..6ba87aa7b 100644
--- a/include/Platform.h
+++ b/include/Platform.h
@@ -9,9 +9,6 @@
#ifndef PLATFORM_H
#define PLATFORM_H
-#define XYPOSITION float
-//#define XYPOSITION int
-
// PLAT_GTK = GTK+ on Linux or Win32
// PLAT_GTK_WIN32 is defined additionally when running PLAT_GTK under Win32
// PLAT_WIN = Win32 API on Win32 OS
@@ -62,6 +59,10 @@
namespace Scintilla {
#endif
+typedef float XYPOSITION;
+typedef double XYACCUMULATOR;
+//#define XYPOSITION int
+
// Underlying the implementation of the platform classes are platform specific types.
// Sometimes these need to be passed around by client code so they are defined here