diff options
| author | Pietro Gagliardi <[email protected]> | 2015-04-15 18:51:04 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2015-04-15 18:51:04 -0400 |
| commit | 823397cf5526a61d6b3a19bb16ab0b2c3da7f95e (patch) | |
| tree | 79797c0fb0c17d64d6e399d3da848f92f72ce3fe | |
| parent | 518a5ddbf15d50a254c732a80d5907ef8878abe0 (diff) | |
Moved the uipriv_*.h files to the respective folders. The ui_*.h files stay up here; they'll be moved to IDLs later.
| -rw-r--r-- | new/darwin/uipriv_darwin.h (renamed from new/uipriv_darwin.h) | 4 | ||||
| -rw-r--r-- | new/unix/uipriv_unix.h (renamed from new/uipriv_unix.h) | 4 | ||||
| -rw-r--r-- | new/windows/uipriv_windows.h (renamed from new/uipriv_windows.h) | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/new/uipriv_darwin.h b/new/darwin/uipriv_darwin.h index 8516e9a..36de1f1 100644 --- a/new/uipriv_darwin.h +++ b/new/darwin/uipriv_darwin.h @@ -2,8 +2,8 @@ #define MAC_OS_X_VERSION_MIN_REQUIRED MAC_OS_X_VERSION_10_7 #define MAC_OS_X_VERSION_MAX_ALLOWED MAC_OS_X_VERSION_10_7 #import <Cocoa/Cocoa.h> -#import "uipriv.h" -#import "ui_darwin.h" +#import "../uipriv.h" +#import "../ui_darwin.h" #define toNSString(str) [NSString stringWithUTF8String:(str)] #define fromNSString(str) [(str) UTF8String] diff --git a/new/uipriv_unix.h b/new/unix/uipriv_unix.h index 1af388b..2178ab0 100644 --- a/new/uipriv_unix.h +++ b/new/unix/uipriv_unix.h @@ -4,8 +4,8 @@ #define GDK_VERSION_MIN_REQUIRED GDK_VERSION_3_4 #define GDK_VERSION_MAX_ALLOWED GDK_VERSION_3_4 #include <gtk/gtk.h> -#include "uipriv.h" -#include "ui_unix.h" +#include "../uipriv.h" +#include "../ui_unix.h" #define gtkXMargin 12 #define gtkYMargin 12 diff --git a/new/uipriv_windows.h b/new/windows/uipriv_windows.h index 9d3d276..4ba0f5a 100644 --- a/new/uipriv_windows.h +++ b/new/windows/uipriv_windows.h @@ -25,8 +25,8 @@ #include <stdarg.h> #include <oleacc.h> #include <stdio.h> -#include "uipriv.h" -#include "ui_windows.h" +#include "../uipriv.h" +#include "../ui_windows.h" // ui internal window messages enum { |
