Skip to content

Commit c811a5e

Browse files
Merge pull request #99 from d-widget-toolkit/rollback
Rollback to b54c611
2 parents ecf31c6 + 5325acd commit c811a5e

File tree

14 files changed

+7117
-1835
lines changed

14 files changed

+7117
-1835
lines changed

base/src/java/lang/String.d

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ version(Tango){
2020
alias TryImmutable!(char)[] String;
2121
alias TryImmutable!(wchar)[] String16;
2222

23-
alias toString = std.conv.to!string;
24-
2523
String new_String( String cont, int offset, int len ){
2624
return _idup(cont[ offset .. offset+len ]);
2725
}

dub.sdl

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,9 @@ subPackage {
1818
configuration "linux-gtk" {
1919
platforms "linux"
2020
sourcePaths "org.eclipse.swt.gtk.linux.x86/src" \
21-
"org.eclipse.swt/Eclipse SWT/common" \
22-
"org.eclipse.swt/Eclipse SWT Custom Widgets/common"
21+
"org.eclipse.swt/Eclipse SWT/common"
2322
importPaths "org.eclipse.swt.gtk.linux.x86/src" \
24-
"org.eclipse.swt/Eclipse SWT/common" \
25-
"org.eclipse.swt/Eclipse SWT Custom Widgets/common"
23+
"org.eclipse.swt/Eclipse SWT/common"
2624
stringImportPaths "org.eclipse.swt.gtk.linux.x86/res"
2725

2826
excludedSourceFiles \
@@ -35,11 +33,9 @@ configuration "linux-gtk" {
3533
configuration "windows-win32" {
3634
platforms "windows"
3735
sourcePaths "org.eclipse.swt.win32.win32.x86/src" \
38-
"org.eclipse.swt/Eclipse SWT/common" \
39-
"org.eclipse.swt/Eclipse SWT Custom Widgets/common"
36+
"org.eclipse.swt/Eclipse SWT/common"
4037
importPaths "org.eclipse.swt.win32.win32.x86/src" \
41-
"org.eclipse.swt/Eclipse SWT/common" \
42-
"org.eclipse.swt/Eclipse SWT Custom Widgets/common"
38+
"org.eclipse.swt/Eclipse SWT/common"
4339
stringImportPaths "org.eclipse.swt.win32.win32.x86/res"
4440

4541
excludedSourceFiles \
@@ -78,14 +74,12 @@ configuration "unittest-gtk" {
7874
sourcePaths \
7975
"tests/" \
8076
"org.eclipse.swt.gtk.linux.x86/src" \
81-
"org.eclipse.swt/Eclipse SWT/common" \
82-
"org.eclipse.swt/Eclipse SWT Custom Widgets/common"
77+
"org.eclipse.swt/Eclipse SWT/common"
8378

8479
importPaths \
8580
"tests/" \
8681
"org.eclipse.swt.gtk.linux.x86/src" \
87-
"org.eclipse.swt/Eclipse SWT/common" \
88-
"org.eclipse.swt/Eclipse SWT Custom Widgets/common"
82+
"org.eclipse.swt/Eclipse SWT/common"
8983

9084
stringImportPaths "org.eclipse.swt.gtk.linux.x86/res"
9185

org.eclipse.swt.gtk.linux.x86/src/org/eclipse/swt/SWT.d

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,6 @@ version(Tango){
6060
*/
6161
public class SWT {
6262

63-
/**
64-
* MenuDetect event detail value indicating that a context menu
65-
* was requested by a keyboard or other focus-based device (value is 1).
66-
*
67-
* @since 3.8
68-
*/
69-
public static const int MENU_KEYBOARD = 1;
70-
7163
/* Widget Event Constants */
7264

7365
/**

0 commit comments

Comments
 (0)