summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-05-05 01:00:20 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2013-05-05 01:00:20 -0500
commitfb4b5d2a5588b69291656872f912eb022b7a03a2 (patch)
tree14904a5729905ba598f37f7273fb4a62004d3024 /kdejava/koala/org/kde/koala
parent8aa20fb7fcfdfa8f57f1e76fb1bba346b65a1eb7 (diff)
downloadtdebindings-fb4b5d2a5588b69291656872f912eb022b7a03a2.tar.gz
tdebindings-fb4b5d2a5588b69291656872f912eb022b7a03a2.zip
Fix inadvertent renaming and typos.
Diffstat (limited to 'kdejava/koala/org/kde/koala')
-rw-r--r--kdejava/koala/org/kde/koala/HTMLQuoteElement.java2
-rw-r--r--kdejava/koala/org/kde/koala/Job.java6
-rw-r--r--kdejava/koala/org/kde/koala/KAnimWidget.java2
-rw-r--r--kdejava/koala/org/kde/koala/KSpellConfig.java2
-rw-r--r--kdejava/koala/org/kde/koala/Range.java4
-rw-r--r--kdejava/koala/org/kde/koala/SimpleJob.java4
-rw-r--r--kdejava/koala/org/kde/koala/TDECModule.java12
-rw-r--r--kdejava/koala/org/kde/koala/TDECModuleSignals.java8
-rw-r--r--kdejava/koala/org/kde/koala/TDEHTMLView.java4
-rw-r--r--kdejava/koala/org/kde/koala/TDEShortcut.java16
10 files changed, 30 insertions, 30 deletions
diff --git a/kdejava/koala/org/kde/koala/HTMLQuoteElement.java b/kdejava/koala/org/kde/koala/HTMLQuoteElement.java
index 202c0aa3..3ea8ef0f 100644
--- a/kdejava/koala/org/kde/koala/HTMLQuoteElement.java
+++ b/kdejava/koala/org/kde/koala/HTMLQuoteElement.java
@@ -12,7 +12,7 @@ import org.kde.qt.QtSupport;
element definition </a> in HTML 4.0.
Note: The DOM is not quite consistent here. They also define the
HTMLBlockQuoteElement interface, to represent the <code>BLOCKTQUOTE</code>
- element. To resolve ambitquities, we use this one for the <code>Q</code>
+ element. To resolve ambiquities, we use this one for the <code>Q</code>
element only.
@short For the <code>Q</code> and <code>BLOCKTQUOTE</code> elements.
diff --git a/kdejava/koala/org/kde/koala/Job.java b/kdejava/koala/org/kde/koala/Job.java
index c0b4a0c5..1336702c 100644
--- a/kdejava/koala/org/kde/koala/Job.java
+++ b/kdejava/koala/org/kde/koala/Job.java
@@ -36,14 +36,14 @@ public class Job extends TQObject {
/**
Abort this job.
This kills all subjobs and deletes the job.
- @param tquietly if false, Job will emit signal result
+ @param quietly if false, Job will emit signal result
and ask tdeio_uiserver to close the progress window.
- <code>tquietly</code> is set to true for subjobs. Whether applications
+ <code>quietly</code> is set to true for subjobs. Whether applications
should call with true or false depends on whether they rely
on result being emitted or not.
@short Abort this job.
*/
- public native void kill(boolean tquietly);
+ public native void kill(boolean quietly);
public native void kill();
/**
Returns the error code, if there has been an error.
diff --git a/kdejava/koala/org/kde/koala/KAnimWidget.java b/kdejava/koala/org/kde/koala/KAnimWidget.java
index 937d8cd6..9307c46e 100644
--- a/kdejava/koala/org/kde/koala/KAnimWidget.java
+++ b/kdejava/koala/org/kde/koala/KAnimWidget.java
@@ -22,7 +22,7 @@ import org.kde.qt.TQFrame;
care of.
This widget also emits a 'clicked()' signal when it received a
mouse press event.
- A tquick example:
+ A quick example:
<pre>
KAnimWidget anim = new KAnimWidget("kde", 0, this);
anim.start();
diff --git a/kdejava/koala/org/kde/koala/KSpellConfig.java b/kdejava/koala/org/kde/koala/KSpellConfig.java
index 57b018dd..02db891d 100644
--- a/kdejava/koala/org/kde/koala/KSpellConfig.java
+++ b/kdejava/koala/org/kde/koala/KSpellConfig.java
@@ -99,7 +99,7 @@ public class KSpellConfig extends TQWidget {
the <code>_ignorelist</code> contains whatever was put in by you plus
any words the user has chosen to ignore via the dialog box.
It may be useful to save this list with the document being
- edited to facilitate tquicker future spellchecking.
+ edited to facilitate quicker future spellchecking.
@short
*/
public native void setIgnoreList(String[] _ignorelist);
diff --git a/kdejava/koala/org/kde/koala/Range.java b/kdejava/koala/org/kde/koala/Range.java
index 54c63096..f9add647 100644
--- a/kdejava/koala/org/kde/koala/Range.java
+++ b/kdejava/koala/org/kde/koala/Range.java
@@ -225,11 +225,11 @@ public class Range implements QtSupport {
public native DocumentFragment createContextualFragment(String html);
/**
Called to indicate that the range is no longer in use and that
- the implementation may relintquish any resources associated with
+ the implementation may relinquish any resources associated with
this range. Subsequent calls to any methods or attribute getters
on this range will result in a DOMException being thrown with an
error code of INVALID_STATE_ERR.
- @short Called to indicate that the range is no longer in use and that the implementation may relintquish any resources associated with this range.
+ @short Called to indicate that the range is no longer in use and that the implementation may relinquish any resources associated with this range.
*/
public native void detach();
/**
diff --git a/kdejava/koala/org/kde/koala/SimpleJob.java b/kdejava/koala/org/kde/koala/SimpleJob.java
index 95b3a8a1..fb98b9ee 100644
--- a/kdejava/koala/org/kde/koala/SimpleJob.java
+++ b/kdejava/koala/org/kde/koala/SimpleJob.java
@@ -42,12 +42,12 @@ public class SimpleJob extends Job {
/**
Abort job.
This kills all subjobs and deletes the job.
- @param tquietly if true, Job will emit signal result
+ @param quietly if true, Job will emit signal result
Should only be set to false when the user kills the job
(from tdeio_uiserver), not when you want to abort a job.
@short Abort job.
*/
- public native void kill(boolean tquietly);
+ public native void kill(boolean quietly);
public native void kill();
/**
Abort job.
diff --git a/kdejava/koala/org/kde/koala/TDECModule.java b/kdejava/koala/org/kde/koala/TDECModule.java
index b82a54e7..ac6f57dc 100644
--- a/kdejava/koala/org/kde/koala/TDECModule.java
+++ b/kdejava/koala/org/kde/koala/TDECModule.java
@@ -143,12 +143,12 @@ public class TDECModule extends TQWidget {
*/
public native void sysdefaults();
/**
- Return a tquick-help text.
+ Return a quick-help text.
This method is called when the module is docked.
- The tquick-help text should contain a short description of the module and
+ The quick-help text should contain a short description of the module and
links to the module's help files. You can use TQML formatting tags in the text.
- @note make sure the tquick help text gets translated (use i18n()).
- @short Return a tquick-help text.
+ @note make sure the quick help text gets translated (use i18n()).
+ @short Return a quick-help text.
*/
public native String quickHelp();
/**
@@ -212,8 +212,8 @@ public class TDECModule extends TQWidget {
*/
// TDEConfigDialogManager* addConfig(TDEConfigSkeleton* arg1,TQWidget* arg2); >>>> NOT CONVERTED
/**
- Sets the tquick help.
- @short Sets the tquick help.
+ Sets the quick help.
+ @short Sets the quick help.
*/
protected native void setQuickHelp(String help);
/**
diff --git a/kdejava/koala/org/kde/koala/TDECModuleSignals.java b/kdejava/koala/org/kde/koala/TDECModuleSignals.java
index fe4bfa22..65c5bac7 100644
--- a/kdejava/koala/org/kde/koala/TDECModuleSignals.java
+++ b/kdejava/koala/org/kde/koala/TDECModuleSignals.java
@@ -15,11 +15,11 @@ public interface TDECModuleSignals {
*/
void changed(boolean state);
/**
- Indicate that the module's tquickhelp has changed.
- Emit this signal whenever the module's tquickhelp changes.
+ Indicate that the module's quickhelp has changed.
+ Emit this signal whenever the module's quickhelp changes.
Modules implemented as tabbed dialogs might want to implement
- per-tab tquickhelp for example.
- @short Indicate that the module's tquickhelp has changed.
+ per-tab quickhelp for example.
+ @short Indicate that the module's quickhelp has changed.
*/
void quickHelpChanged();
}
diff --git a/kdejava/koala/org/kde/koala/TDEHTMLView.java b/kdejava/koala/org/kde/koala/TDEHTMLView.java
index f3f84a2c..d89ed678 100644
--- a/kdejava/koala/org/kde/koala/TDEHTMLView.java
+++ b/kdejava/koala/org/kde/koala/TDEHTMLView.java
@@ -90,10 +90,10 @@ public class TDEHTMLView extends TQScrollView {
public native void print();
/**
Prints the HTML document.
- @param tquick if true, fully automated printing, without print dialog
+ @param quick if true, fully automated printing, without print dialog
@short Prints the HTML document.
*/
- public native void print(boolean tquick);
+ public native void print(boolean quick);
/**
ensure the display is up to date
@short ensure the display is up to date
diff --git a/kdejava/koala/org/kde/koala/TDEShortcut.java b/kdejava/koala/org/kde/koala/TDEShortcut.java
index c2281727..3a0ee12f 100644
--- a/kdejava/koala/org/kde/koala/TDEShortcut.java
+++ b/kdejava/koala/org/kde/koala/TDEShortcut.java
@@ -36,7 +36,7 @@ public class TDEShortcut implements QtSupport {
a TDEShortcut.
@short The maximum number of key sequences that can be contained in a TDEShortcut.
*/
- public static final int MAX_SETQUENCES = 2;
+ public static final int MAX_SEQUENCES = 2;
/**
Creates a new null shortcut.
@@ -163,7 +163,7 @@ public class TDEShortcut implements QtSupport {
Returns the number of sequences that are in this
shortcut.
@return the number of sequences
- MAX_SETQUENCES
+ MAX_SEQUENCES
@short Returns the number of sequences that are in this shortcut.
*/
@@ -173,7 +173,7 @@ public class TDEShortcut implements QtSupport {
@param i the number of the key sequence to retrieve
@return the <code>i</code>'th sequence or KKeySequence.null() if
there are less than <code>i</code> key sequences
- MAX_SETQUENCES
+ MAX_SEQUENCES
@short Returns the <code>i</code>'th key sequence of this shortcut.
*/
@@ -252,8 +252,8 @@ public class TDEShortcut implements QtSupport {
/**
Sets the <code>i</code> 'th key sequence of the shortcut. You can not introduce
gaps in the list of sequences, so you must use an <code>i</code> <= count().
- Also note that the maximum number of key sequences is MAX_SETQUENCES.
- @param i the position of the new key sequence(0 <= i <= count(), 0 <= i < MAX_SETQUENCES)
+ Also note that the maximum number of key sequences is MAX_SEQUENCES.
+ @param i the position of the new key sequence(0 <= i <= count(), 0 <= i < MAX_SEQUENCES)
@param keySeq the key sequence to set
@return true if successful, false otherwise
@@ -262,7 +262,7 @@ public class TDEShortcut implements QtSupport {
public native boolean setSeq(int i, KKeySequence keySeq);
/**
Appends the given key sequence. This sets it as either the keysequence or
- the alternate keysequence. If the shortcut already has MAX_SETQUENCES
+ the alternate keysequence. If the shortcut already has MAX_SEQUENCES
sequences then this call does nothing, and returns false.
@param keySeq the key sequence to add
@return true if successful, false otherwise
@@ -284,7 +284,7 @@ public class TDEShortcut implements QtSupport {
@short Appends the given key
@see #setSeq
- @see MAX_SETQUENCES
+ @see MAX_SEQUENCES
*/
public native boolean append(KKey spec);
/**
@@ -293,7 +293,7 @@ public class TDEShortcut implements QtSupport {
@return true if successful, false otherwise
@short Appends the sequences from the given shortcut.
- @see MAX_SETQUENCES
+ @see MAX_SEQUENCES
*/
public native boolean append(TDEShortcut cut);
/**