Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti2002-02-01 15:33:44 +0000
committerSilenio Quarti2002-02-01 15:33:44 +0000
commit753a3773a233c7ec4f90b020a4ad8b1dd3ae29ef (patch)
treef58a033e11713144ca16fde128e5eed9106ba192
parentc9c8e38c760f3ba18ccefacf08391db8d50af237 (diff)
downloadeclipse.platform.swt-753a3773a233c7ec4f90b020a4ad8b1dd3ae29ef.tar.gz
eclipse.platform.swt-753a3773a233c7ec4f90b020a4ad8b1dd3ae29ef.tar.xz
eclipse.platform.swt-753a3773a233c7ec4f90b020a4ad8b1dd3ae29ef.zip
*** empty log message ***
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Scrollable.java2
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Text.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Scrollable.java b/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Scrollable.java
index 9567375c73..a69c07d7bc 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Scrollable.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Scrollable.java
@@ -63,7 +63,7 @@ public Scrollable (Composite parent, int style) {
super (parent, style);
}
-void createScrollBars () {
+void createStandardScrollBars () {
/* Search the handle to find the scroll bars */
int child = OS.PtWidgetChildFront (handle);
while (child != 0) {
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Text.java b/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Text.java
index b87fc67b25..2c2086e88a 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Text.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/photon/org/eclipse/swt/widgets/Text.java
@@ -162,7 +162,7 @@ void createHandle (int index) {
};
handle = OS.PtCreateWidget (clazz, parentHandle, args.length / 3, args);
if (handle == 0) error (SWT.ERROR_NO_HANDLES);
- createScrollBars();
+ createStandardScrollBars ();
}
void createWidget (int index) {

Back to the top