summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-04-07 00:26:27 -0400
committerPietro Gagliardi <[email protected]>2015-04-07 00:26:27 -0400
commit1d76d53593de0c6bd4faf8c47bb525977a33b178 (patch)
treeab01dc42676cf0cfada47cc581189fa48e2c6707
parent06adf7488da7cac837351256923b0ab5038d13ae (diff)
Changed ui_*.h to uipriv_*.h pending a public non-portable API.
-rw-r--r--new/alloc_darwin.m2
-rw-r--r--new/alloc_windows.c2
-rw-r--r--new/debug_windows.c2
-rw-r--r--new/init_darwin.m2
-rw-r--r--new/init_unix.c2
-rw-r--r--new/init_windows.c2
-rw-r--r--new/main_darwin.m2
-rw-r--r--new/main_unix.c2
-rw-r--r--new/main_windows.c2
-rw-r--r--new/singlehandle_windows.c2
-rw-r--r--new/uipriv_darwin.h (renamed from new/ui_darwin.h)0
-rw-r--r--new/uipriv_unix.h (renamed from new/ui_unix.h)0
-rw-r--r--new/uipriv_windows.h (renamed from new/ui_windows.h)0
-rw-r--r--new/util_windows.c2
-rw-r--r--new/window_darwin.m2
-rw-r--r--new/window_unix.c2
-rw-r--r--new/window_windows.c2
17 files changed, 14 insertions, 14 deletions
diff --git a/new/alloc_darwin.m b/new/alloc_darwin.m
index 059152a..4b768b6 100644
--- a/new/alloc_darwin.m
+++ b/new/alloc_darwin.m
@@ -1,5 +1,5 @@
// 4 december 2014
-#include "ui_darwin.h"
+#import "uipriv_darwin.h"
// TODO is there a better alternative to NSCAssert()? preferably a built-in allocator that panics on out of memory for us?
diff --git a/new/alloc_windows.c b/new/alloc_windows.c
index 049e909..7922d5d 100644
--- a/new/alloc_windows.c
+++ b/new/alloc_windows.c
@@ -1,5 +1,5 @@
// 4 december 2014
-#include "ui_windows.h"
+#include "uipriv_windows.h"
// wrappers for allocator of choice
// panics on memory exhausted, undefined on heap corruption or other unreliably-detected malady (see http://stackoverflow.com/questions/28761680/is-there-a-windows-api-memory-allocator-deallocator-i-can-use-that-will-just-giv)
diff --git a/new/debug_windows.c b/new/debug_windows.c
index d044f33..ddda738 100644
--- a/new/debug_windows.c
+++ b/new/debug_windows.c
@@ -1,5 +1,5 @@
// 25 february 2015
-#include "ui_windows.h"
+#include "uipriv_windows.h"
// uncomment the following line to enable debug messages
#define tableDebug
diff --git a/new/init_darwin.m b/new/init_darwin.m
index 6d71152..b251b47 100644
--- a/new/init_darwin.m
+++ b/new/init_darwin.m
@@ -1,5 +1,5 @@
// 6 april 2015
-#include "ui_darwin.h"
+#import "uipriv_darwin.h"
@interface uiApplication : NSApplication
@end
diff --git a/new/init_unix.c b/new/init_unix.c
index bda6481..48d4366 100644
--- a/new/init_unix.c
+++ b/new/init_unix.c
@@ -1,5 +1,5 @@
// 6 april 2015
-#include "ui_unix.h"
+#include "uipriv_unix.h"
struct uiInitError {
GError *err;
diff --git a/new/init_windows.c b/new/init_windows.c
index 07031aa..f2c687d 100644
--- a/new/init_windows.c
+++ b/new/init_windows.c
@@ -1,5 +1,5 @@
// 6 april 2015
-#include "ui_windows.h"
+#include "uipriv_windows.h"
HINSTANCE hInstance;
int nCmdShow;
diff --git a/new/main_darwin.m b/new/main_darwin.m
index be9b599..d19af08 100644
--- a/new/main_darwin.m
+++ b/new/main_darwin.m
@@ -1,5 +1,5 @@
// 6 april 2015
-#include "ui_darwin.h"
+#import "uipriv_darwin.h"
// TODO merge with init_darwin.m?
diff --git a/new/main_unix.c b/new/main_unix.c
index b95e99e..90374c7 100644
--- a/new/main_unix.c
+++ b/new/main_unix.c
@@ -1,5 +1,5 @@
// 6 april 2015
-#include "ui_unix.h"
+#include "uipriv_unix.h"
// #qo pkg-config: gtk+-3.0
diff --git a/new/main_windows.c b/new/main_windows.c
index 43e6b5c..bd973b7 100644
--- a/new/main_windows.c
+++ b/new/main_windows.c
@@ -1,5 +1,5 @@
// 6 april 2015
-#include "ui_windows.h"
+#include "uipriv_windows.h"
// #qo LDFLAGS: -luser32 -lkernel32 -lgdi32 -luxtheme -lmsimg32 -lcomdlg32 -lole32 -loleaut32 -loleacc -luuid
diff --git a/new/singlehandle_windows.c b/new/singlehandle_windows.c
index 74dee5f..b55a8b9 100644
--- a/new/singlehandle_windows.c
+++ b/new/singlehandle_windows.c
@@ -1,5 +1,5 @@
// 6 april 2015
-#include "tablepriv.h"
+#include "uipriv_windows.h"
// Common code for controls with a single window handle.
// The only method NOT defined is preferredSize(); this differs between controls.
diff --git a/new/ui_darwin.h b/new/uipriv_darwin.h
index 64b01db..64b01db 100644
--- a/new/ui_darwin.h
+++ b/new/uipriv_darwin.h
diff --git a/new/ui_unix.h b/new/uipriv_unix.h
index 642dd49..642dd49 100644
--- a/new/ui_unix.h
+++ b/new/uipriv_unix.h
diff --git a/new/ui_windows.h b/new/uipriv_windows.h
index 896762f..896762f 100644
--- a/new/ui_windows.h
+++ b/new/uipriv_windows.h
diff --git a/new/util_windows.c b/new/util_windows.c
index c3f8971..0bd76a0 100644
--- a/new/util_windows.c
+++ b/new/util_windows.c
@@ -1,5 +1,5 @@
// 6 april 2015
-#include "ui_windows.h"
+#include "uipriv_windows.h"
#define MBTWC(str, wstr, bufsiz) MultiByteToWideChar(CP_UTF8, 0, str, -1, wstr, bufsiz)
diff --git a/new/window_darwin.m b/new/window_darwin.m
index 1a60f8b..30c3a1a 100644
--- a/new/window_darwin.m
+++ b/new/window_darwin.m
@@ -1,5 +1,5 @@
// 6 april 2015
-#include "ui_darwin.h"
+#import "uipriv_darwin.h"
@interface uiWindowDelegate : NSObject <NSWindowDelegate>
@property uiWindow *w;
diff --git a/new/window_unix.c b/new/window_unix.c
index f3d4ec3..3a145ac 100644
--- a/new/window_unix.c
+++ b/new/window_unix.c
@@ -1,5 +1,5 @@
// 6 april 2015
-#include "ui_unix.h"
+#include "uipriv_unix.h"
struct uiWindow {
GtkWidget *widget;
diff --git a/new/window_windows.c b/new/window_windows.c
index 0452161..12655b9 100644
--- a/new/window_windows.c
+++ b/new/window_windows.c
@@ -1,5 +1,5 @@
// 6 april 2015
-#include "ui_windows.h"
+#include "uipriv_windows.h"
struct uiWindow {
HWND hwnd;