Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Heidrich2010-03-11 18:40:07 +0000
committerFelipe Heidrich2010-03-11 18:40:07 +0000
commit88bdaedb6a4036ad184bb96bfb37af605c6aabbf (patch)
tree08847cd469b91d3f9d7fae8161f96063b493a003 /bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common
parent8420045ee60244c193a53334c2afb219cce7e0bf (diff)
downloadeclipse.platform.swt-88bdaedb6a4036ad184bb96bfb37af605c6aabbf.tar.gz
eclipse.platform.swt-88bdaedb6a4036ad184bb96bfb37af605c6aabbf.tar.xz
eclipse.platform.swt-88bdaedb6a4036ad184bb96bfb37af605c6aabbf.zip
rename getTabsStop() to getTabStops()
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
index d88fb366c5..ac314d1186 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
@@ -4244,7 +4244,7 @@ public int getLineIndex(int y) {
* <li>ERROR_INVALID_ARGUMENT when the index is invalid</li>
* </ul>
*
- * @see #getTabsStop()
+ * @see #getTabStops()
*
* @since 3.6
*/
@@ -5057,7 +5057,7 @@ public StyleRange[] getStyleRanges(int start, int length, boolean includeRanges)
* <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
* </ul>
*
- * @see #getTabsStop()
+ * @see #getTabStops()
*/
public int getTabs() {
checkWidget();
@@ -5075,7 +5075,7 @@ public int getTabs() {
*
* @since 3.6
*/
-public int[] getTabsStop() {
+public int[] getTabStops() {
checkWidget();
if (tabs == null) return new int [] {renderer.tabWidth};
int[] result = new int[tabs.length];
@@ -6674,7 +6674,7 @@ void initializeAccessible() {
e.topMargin = st.getTopMargin();
e.rightMargin = st.getRightMargin();
e.bottomMargin = st.getBottomMargin();
- e.tabStops = st.getTabsStop();
+ e.tabStops = st.getTabStops();
e.justify = st.getJustify();
e.alignment = st.getAlignment();
e.indent = st.getIndent();
@@ -9730,7 +9730,7 @@ public void setTabs(int tabs) {
* <li>ERROR_INVALID_ARGUMENT - if a tab stop is negavite or less than the previous stop in the list</li>
* </ul>
*
- * @see StyledText#getTabsStop()
+ * @see StyledText#getTabStops()
*
* @since 3.6
*/

Back to the top