From fb4b5d2a5588b69291656872f912eb022b7a03a2 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Sun, 5 May 2013 01:00:20 -0500 Subject: Fix inadvertent renaming and typos. --- INSTALL | 2 +- kalyptus/kalyptus | 14 ++++---- kdejava/AUTHORS | 2 +- kdejava/INSTALL | 2 +- kdejava/koala/kdejava/Job.cpp | 4 +-- kdejava/koala/kdejava/SimpleJob.cpp | 4 +-- kdejava/koala/kdejava/TDEHTMLView.cpp | 4 +-- kdejava/koala/org/kde/koala/HTMLQuoteElement.java | 2 +- kdejava/koala/org/kde/koala/Job.java | 6 ++-- kdejava/koala/org/kde/koala/KAnimWidget.java | 2 +- kdejava/koala/org/kde/koala/KSpellConfig.java | 2 +- kdejava/koala/org/kde/koala/Range.java | 4 +-- kdejava/koala/org/kde/koala/SimpleJob.java | 4 +-- kdejava/koala/org/kde/koala/TDECModule.java | 12 +++---- kdejava/koala/org/kde/koala/TDECModuleSignals.java | 8 ++--- kdejava/koala/org/kde/koala/TDEHTMLView.java | 4 +-- kdejava/koala/org/kde/koala/TDEShortcut.java | 16 ++++----- kdejava/koala/test/khelpers/KHelpers.java | 6 ++-- kdejava/koala/test/tdeioslave/KioslaveTest.java | 2 +- kjsembed/Doxyfile-Internal | 2 +- kjsembed/bindwizard/Doxyfile.in | 2 +- kjsembed/docs/ChangeLog | 2 +- kjsembed/docs/embedding/simple-embed/README | 2 +- kjsembed/docs/examples/html2text/test.htm | 2 +- kjsembed/docs/examples/imageinfo/example.html | 2 +- kjsembed/docs/examples/imageinfo/imagegallery.js | 2 +- kjsembed/docs/examples/imageinfo/thumbs.html | 2 +- kjsembed/docs/tutorial/kjsembed.html | 2 +- kjsembed/tools/Doxyfile | 2 +- korundum/AUTHORS | 2 +- korundum/rubylib/examples/kludgeror.rb | 2 +- korundum/rubylib/templates/annotated/systray1.rb | 2 +- qtjava/AUTHORS | 2 +- qtjava/INSTALL | 2 +- .../javalib/examples/qwerty/ANSI_X3.110-1983.map | 40 +++++++++++----------- qtjava/javalib/examples/qwerty/IBM277.map | 32 ++++++++--------- qtjava/javalib/examples/widgets/WidgetView.java | 2 +- qtruby/AUTHORS | 2 +- qtruby/INSTALL | 2 +- .../rubylib/examples/ruboids/ruboids/Graphics.rb | 4 +-- smoke/kde/qtguess.pl.in | 2 +- smoke/qt/qtguess.pl.in | 2 +- 42 files changed, 108 insertions(+), 108 deletions(-) diff --git a/INSTALL b/INSTALL index 52c8915e..f8bad0c1 100644 --- a/INSTALL +++ b/INSTALL @@ -159,7 +159,7 @@ operates. `--help' Print a summary of the options to `configure', and exit. -`--tquiet' +`--quiet' `--silent' `-q' Do not print messages saying which checks are being made. diff --git a/kalyptus/kalyptus b/kalyptus/kalyptus index 5ffa8af8..5bc443ba 100644 --- a/kalyptus/kalyptus +++ b/kalyptus/kalyptus @@ -23,7 +23,7 @@ use kdocParseDoc; use vars qw/ %rootNodes $declNodeType @includes_list %options @formats_wanted $allow_k_dcop_accessors @includeclasses $includeclasses $skipInternal %defines $defines $match_qt_defines $libdir $libname $outputdir @libs $parse_global_space $qt_embedded $qt4 $striphpath $doPrivate $readstdin - $Version $tquiet $debug $debuggen $parseonly $currentfile $cSourceNode $exe + $Version $quiet $debug $debuggen $parseonly $currentfile $cSourceNode $exe %formats %flagnames @allowed_k_dcop_accesors $allowed_k_dcop_accesors_re $rootNode @classStack $cNode $globalSpaceClassName $lastLine $docNode @includes $cpp $defcppcmd $cppcmd $docincluded @@ -52,7 +52,7 @@ $includeclasses = ""; $doPrivate = 0; $Version = "0.9"; -$tquiet = 0; +$quiet = 0; $debug = 0; $debuggen = 0; $parseonly = 0; @@ -201,7 +201,7 @@ GetOptions( \%options, "define=s", \%defines, # define a single preprocessing symbol "defines=s", \$defines, # file containing preprocessing symbols, one per line - "tquiet|q", \$tquiet, + "quiet|q", \$quiet, "debug|D", \$debug, # debug the parsing "debuggen", \$debuggen, # debug the file generation "parse-only", \$parseonly ) @@ -221,7 +221,7 @@ else { if ($#includeclasses>=0) { $includeclasses = join (" ", @includeclasses); - print "Using Classes: $includeclasses\n" unless $tquiet; + print "Using Classes: $includeclasses\n" unless $quiet; } if ( $#includes >= 0 && !$cpp ) { @@ -330,7 +330,7 @@ sub readLibraries require kdocLib; foreach my $lib ( @libs ) { - print "$exe: reading lib: $lib\n" unless $tquiet; + print "$exe: reading lib: $lib\n" unless $quiet; my $relpath = exists $options{url} ? $options{url} : $outputdir; @@ -366,7 +366,7 @@ sub parseFiles || croak "Can't read from $currentfile"; } - print STDERR "$exe: processing $currentfile\n" unless $tquiet; + print STDERR "$exe: processing $currentfile\n" unless $quiet; # reset vars $rootNode = getRoot( $lang ); @@ -415,7 +415,7 @@ sub writeDocumentation require $pack.".pm"; print STDERR "Generating bindings for $format ", - "language...\n" unless $tquiet; + "language...\n" unless $quiet; my $f = "$pack\::writeDoc"; &$f( $libname, $node, $outputdir, \%options ); diff --git a/kdejava/AUTHORS b/kdejava/AUTHORS index 084a7391..0d063344 100644 --- a/kdejava/AUTHORS +++ b/kdejava/AUTHORS @@ -11,7 +11,7 @@ Chief Wreck On The Highway Richard Dale -Etquipment +Equipment iMac with SuSE 6.4, 160 Mb RAM, and Contour 3 button UniMouse Books diff --git a/kdejava/INSTALL b/kdejava/INSTALL index 4f43e1e4..02a4a074 100644 --- a/kdejava/INSTALL +++ b/kdejava/INSTALL @@ -150,7 +150,7 @@ operates. `--help' Print a summary of the options to `configure', and exit. -`--tquiet' +`--quiet' `--silent' `-q' Do not print messages saying which checks are being made. diff --git a/kdejava/koala/kdejava/Job.cpp b/kdejava/koala/kdejava/Job.cpp index a6790771..24b22f7c 100644 --- a/kdejava/koala/kdejava/Job.cpp +++ b/kdejava/koala/kdejava/Job.cpp @@ -254,9 +254,9 @@ Java_org_kde_koala_Job_kill__(JNIEnv* env, jobject obj) } JNIEXPORT void JNICALL -Java_org_kde_koala_Job_kill__Z(JNIEnv* env, jobject obj, jboolean tquietly) +Java_org_kde_koala_Job_kill__Z(JNIEnv* env, jobject obj, jboolean quietly) { - ((TDEIO::Job*) QtSupport::getQt(env, obj))->kill((bool) tquietly); + ((TDEIO::Job*) QtSupport::getQt(env, obj))->kill((bool) quietly); return; } diff --git a/kdejava/koala/kdejava/SimpleJob.cpp b/kdejava/koala/kdejava/SimpleJob.cpp index 10403282..664e948a 100644 --- a/kdejava/koala/kdejava/SimpleJob.cpp +++ b/kdejava/koala/kdejava/SimpleJob.cpp @@ -139,9 +139,9 @@ Java_org_kde_koala_SimpleJob_kill__(JNIEnv* env, jobject obj) } JNIEXPORT void JNICALL -Java_org_kde_koala_SimpleJob_kill__Z(JNIEnv* env, jobject obj, jboolean tquietly) +Java_org_kde_koala_SimpleJob_kill__Z(JNIEnv* env, jobject obj, jboolean quietly) { - ((TDEIO::SimpleJob*) QtSupport::getQt(env, obj))->kill((bool) tquietly); + ((TDEIO::SimpleJob*) QtSupport::getQt(env, obj))->kill((bool) quietly); return; } diff --git a/kdejava/koala/kdejava/TDEHTMLView.cpp b/kdejava/koala/kdejava/TDEHTMLView.cpp index 39bc0167..1a7caba3 100644 --- a/kdejava/koala/kdejava/TDEHTMLView.cpp +++ b/kdejava/koala/kdejava/TDEHTMLView.cpp @@ -801,9 +801,9 @@ Java_org_kde_koala_TDEHTMLView_print__(JNIEnv* env, jobject obj) } JNIEXPORT void JNICALL -Java_org_kde_koala_TDEHTMLView_print__Z(JNIEnv* env, jobject obj, jboolean tquick) +Java_org_kde_koala_TDEHTMLView_print__Z(JNIEnv* env, jobject obj, jboolean quick) { - ((TDEHTMLView*) QtSupport::getQt(env, obj))->print((bool) tquick); + ((TDEHTMLView*) QtSupport::getQt(env, obj))->print((bool) quick); return; } 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 in HTML 4.0. Note: The DOM is not quite consistent here. They also define the HTMLBlockQuoteElement interface, to represent the BLOCKTQUOTE - element. To resolve ambitquities, we use this one for the Q + element. To resolve ambiquities, we use this one for the Q element only. @short For the Q and BLOCKTQUOTE 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. - tquietly is set to true for subjobs. Whether applications + quietly 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:
  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 _ignorelist 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 i'th sequence or KKeySequence.null() if
          there are less than i key sequences
- MAX_SETQUENCES
+ MAX_SEQUENCES
 	 
 		@short    Returns the i'th key sequence of this shortcut.
 	*/
@@ -252,8 +252,8 @@ public class TDEShortcut implements QtSupport {
 	/**	
 		 Sets the i 'th key sequence of the shortcut. You can not introduce
 		 gaps in the list of sequences, so you must use an i <= 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);
 	/**	
diff --git a/kdejava/koala/test/khelpers/KHelpers.java b/kdejava/koala/test/khelpers/KHelpers.java
index 04235f14..47803457 100644
--- a/kdejava/koala/test/khelpers/KHelpers.java
+++ b/kdejava/koala/test/khelpers/KHelpers.java
@@ -23,7 +23,7 @@ public class KHelpers extends TDEMainWindow {
    protected int idfilenew;
    protected int idfileopen;
    protected int idfilesave;
-   protected int idfiletquit;
+   protected int idfilequit;
 
    // reference to the application
    TDEApplication kapp;
@@ -41,7 +41,7 @@ public class KHelpers extends TDEMainWindow {
       idfilenew = file.insertItem("&New");
       idfileopen = file.insertItem("&Open...");
       idfilesave = file.insertItem("&Save");
-      idfiletquit = file.insertItem("&Quit", kapp, SLOT("closeAllWindows()"));
+      idfilequit = file.insertItem("&Quit", kapp, SLOT("closeAllWindows()"));
 
       connect ( file, SIGNAL( "highlighted(int)"), this, SLOT( "slotMenuEntryHelp (int)"));
 
@@ -86,7 +86,7 @@ public class KHelpers extends TDEMainWindow {
          statusBar().message("Save the current document.",HelpMessageTime);
 
       }
-      else if (id == idfiletquit) {
+      else if (id == idfilequit) {
 
          statusBar().message("Quit the application.",HelpMessageTime);
 
diff --git a/kdejava/koala/test/tdeioslave/KioslaveTest.java b/kdejava/koala/test/tdeioslave/KioslaveTest.java
index 0176f9c2..5966430c 100644
--- a/kdejava/koala/test/tdeioslave/KioslaveTest.java
+++ b/kdejava/koala/test/tdeioslave/KioslaveTest.java
@@ -242,7 +242,7 @@ protected void closeEvent( TQCloseEvent e ){
 
 void slotQuit(){
   if ( job != null ) {
-    job.kill( true );  // kill the job tquietly
+    job.kill( true );  // kill the job quietly
   }
   if (slave != null )
     Scheduler.disconnectSlave(slave);
diff --git a/kjsembed/Doxyfile-Internal b/kjsembed/Doxyfile-Internal
index ca1f823e..048522bb 100644
--- a/kjsembed/Doxyfile-Internal
+++ b/kjsembed/Doxyfile-Internal
@@ -171,7 +171,7 @@ SHOW_INCLUDE_FILES     = YES
 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 
 # will interpret the first line (until the first dot) of a JavaDoc-style 
 # comment as the brief description. If set to NO, the JavaDoc 
-# comments  will behave just like the Qt-style comments (thus retquiring an 
+# comments  will behave just like the Qt-style comments (thus requiring an 
 # explict @brief command for a brief description.
 
 JAVADOC_AUTOBRIEF      = YES
diff --git a/kjsembed/bindwizard/Doxyfile.in b/kjsembed/bindwizard/Doxyfile.in
index 3ef3847c..5cf85c7c 100644
--- a/kjsembed/bindwizard/Doxyfile.in
+++ b/kjsembed/bindwizard/Doxyfile.in
@@ -171,7 +171,7 @@ SHOW_INCLUDE_FILES     = YES
 # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 
 # will interpret the first line (until the first dot) of a JavaDoc-style 
 # comment as the brief description. If set to NO, the JavaDoc 
-# comments  will behave just like the Qt-style comments (thus retquiring an 
+# comments  will behave just like the Qt-style comments (thus requiring an 
 # explict @brief command for a brief description.
 
 JAVADOC_AUTOBRIEF      = YES
diff --git a/kjsembed/docs/ChangeLog b/kjsembed/docs/ChangeLog
index 9a4ee30e..acf9f517 100644
--- a/kjsembed/docs/ChangeLog
+++ b/kjsembed/docs/ChangeLog
@@ -2303,7 +2303,7 @@
 
 2003-11-22 Saturday 00:54  geiseri
 
-	Make the compiler a little tquieter by commenting out unused args in functions.
+	Make the compiler a little quieter by commenting out unused args in functions.
 
 2003-11-21 Friday 20:13  rich
 
diff --git a/kjsembed/docs/embedding/simple-embed/README b/kjsembed/docs/embedding/simple-embed/README
index 4d07166c..39de8b2f 100644
--- a/kjsembed/docs/embedding/simple-embed/README
+++ b/kjsembed/docs/embedding/simple-embed/README
@@ -1,5 +1,5 @@
 -----------------------------------------------
-Kde application framework template tquickstart
+Kde application framework template quickstart
 Author: Thomas Nagy
 Date: 2004-03-22
 -----------------------------------------------
diff --git a/kjsembed/docs/examples/html2text/test.htm b/kjsembed/docs/examples/html2text/test.htm
index 129032e1..b657fa08 100644
--- a/kjsembed/docs/examples/html2text/test.htm
+++ b/kjsembed/docs/examples/html2text/test.htm
@@ -59,7 +59,7 @@ pre {
     made scriptable without explicitly binding every object.</li>
 </ul>
 <h3>First Steps - The Console Dialog</h3>
-<p>The tquickest way to see what KJSEmbed can do is with kjscmd, a tool for running 
+<p>The quickest way to see what KJSEmbed can do is with kjscmd, a tool for running 
   scripts from the command line. To begin, we'll run kjscmd without any parameters 
   which brings up the KJSEmbed console dialog. The console provides an easy way 
   to run short (one line) scripts, as you can see in figure 1 the scripts have 
diff --git a/kjsembed/docs/examples/imageinfo/example.html b/kjsembed/docs/examples/imageinfo/example.html
index 4a9873c7..2f616027 100644
--- a/kjsembed/docs/examples/imageinfo/example.html
+++ b/kjsembed/docs/examples/imageinfo/example.html
@@ -5,7 +5,7 @@
 
 

Image Gallery


-

Here are some images, the larger ones have been scaled down to ensure this page loads tquickly. Click on an image or filename to see it full size.

+

Here are some images, the larger ones have been scaled down to ensure this page loads quickly. Click on an image or filename to see it full size.

diff --git a/kjsembed/docs/examples/imageinfo/imagegallery.js b/kjsembed/docs/examples/imageinfo/imagegallery.js index dba3951c..4cc5bc2d 100755 --- a/kjsembed/docs/examples/imageinfo/imagegallery.js +++ b/kjsembed/docs/examples/imageinfo/imagegallery.js @@ -6,7 +6,7 @@ var default_title = 'Image Gallery'; var default_intro = 'Here are some images, the larger ones have been scaled down to ' - + 'ensure this page loads tquickly. Click on an image or filename ' + + 'ensure this page loads quickly. Click on an image or filename ' + 'to see it full size.'; var default_width = 250; var default_height = 160; diff --git a/kjsembed/docs/examples/imageinfo/thumbs.html b/kjsembed/docs/examples/imageinfo/thumbs.html index 2c66e0a5..dd8ae478 100644 --- a/kjsembed/docs/examples/imageinfo/thumbs.html +++ b/kjsembed/docs/examples/imageinfo/thumbs.html @@ -5,7 +5,7 @@

Image Gallery


-

Here are some images, the larger ones have been scaled down to ensure this page loads tquickly. Click on an image or filename to see it full size.

+

Here are some images, the larger ones have been scaled down to ensure this page loads quickly. Click on an image or filename to see it full size.

diff --git a/kjsembed/docs/tutorial/kjsembed.html b/kjsembed/docs/tutorial/kjsembed.html index 58aa869e..8147c6c2 100644 --- a/kjsembed/docs/tutorial/kjsembed.html +++ b/kjsembed/docs/tutorial/kjsembed.html @@ -60,7 +60,7 @@ pre { made scriptable without explicitly binding every object.

First Steps - The Console Dialog

-

The tquickest way to see what KJSEmbed can do is with kjscmd, a tool for running +

The quickest way to see what KJSEmbed can do is with kjscmd, a tool for running scripts from the command line. To begin, we'll run kjscmd without any parameters which brings up the KJSEmbed console dialog. The console provides an easy way to run short (one line) scripts, as you can see in figure 1 the scripts have diff --git a/kjsembed/tools/Doxyfile b/kjsembed/tools/Doxyfile index 9ab51d9c..a3167891 100644 --- a/kjsembed/tools/Doxyfile +++ b/kjsembed/tools/Doxyfile @@ -171,7 +171,7 @@ SHOW_INCLUDE_FILES = YES # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc -# comments will behave just like the Qt-style comments (thus retquiring an +# comments will behave just like the Qt-style comments (thus requiring an # explict @brief command for a brief description. JAVADOC_AUTOBRIEF = YES diff --git a/korundum/AUTHORS b/korundum/AUTHORS index b547d7dc..0756dc66 100644 --- a/korundum/AUTHORS +++ b/korundum/AUTHORS @@ -19,7 +19,7 @@ QtRuby is a ruby version of the PerlQt/Smoke project, written by: Germain Garand David Faure -Etquipment +Equipment 800 Mhz iBook with Yellow Dog 3.0, Macally Micro 3 button mouse Books diff --git a/korundum/rubylib/examples/kludgeror.rb b/korundum/rubylib/examples/kludgeror.rb index ae6db564..5bf2b4a4 100644 --- a/korundum/rubylib/examples/kludgeror.rb +++ b/korundum/rubylib/examples/kludgeror.rb @@ -1,5 +1,5 @@ #!/usr/bin/env ruby -# A tquick and dirty web browser demonstrating the direct instantiation +# A quick and dirty web browser demonstrating the direct instantiation # of a TDEHTML part. Needless to say: this is NOT a programming paragon :) # -- gg. # AK - ported to ruby diff --git a/korundum/rubylib/templates/annotated/systray1.rb b/korundum/rubylib/templates/annotated/systray1.rb index cf90ef45..15ab2328 100644 --- a/korundum/rubylib/templates/annotated/systray1.rb +++ b/korundum/rubylib/templates/annotated/systray1.rb @@ -4,7 +4,7 @@ This is a ruby version of Jim Bublitz's pytde program, translated by Richard Dal =begin A basic system tray application - you can combine this with code from -menuapp2.rb or menuapp3.rb to tquickly build a full-blown application +menuapp2.rb or menuapp3.rb to quickly build a full-blown application framework. =end diff --git a/qtjava/AUTHORS b/qtjava/AUTHORS index c2a4264c..803af9f1 100644 --- a/qtjava/AUTHORS +++ b/qtjava/AUTHORS @@ -11,7 +11,7 @@ Chief Wreck On The Highway Richard Dale -Etquipment +Equipment iMac with SuSE 6.4, Contour 3 button UniMouse Books diff --git a/qtjava/INSTALL b/qtjava/INSTALL index 4f43e1e4..02a4a074 100644 --- a/qtjava/INSTALL +++ b/qtjava/INSTALL @@ -150,7 +150,7 @@ operates. `--help' Print a summary of the options to `configure', and exit. -`--tquiet' +`--quiet' `--silent' `-q' Do not print messages saying which checks are being made. diff --git a/qtjava/javalib/examples/qwerty/ANSI_X3.110-1983.map b/qtjava/javalib/examples/qwerty/ANSI_X3.110-1983.map index 5ab0c2cb..1b7058ec 100644 --- a/qtjava/javalib/examples/qwerty/ANSI_X3.110-1983.map +++ b/qtjava/javalib/examples/qwerty/ANSI_X3.110-1983.map @@ -43,7 +43,7 @@ CHARMAP /x1F UNIT SEPARATOR (IS1) /x20 SPACE /x21 EXCLAMATION MARK -<"> /x22 TQUOTATION MARK +<"> /x22 QUOTATION MARK <%> /x25 PERCENT SIGN <&> /x26 AMPERSAND <'> /x27 APOSTROPHE @@ -68,9 +68,9 @@ CHARMAP <:> /x3A COLON <;> /x3B SEMICOLON <<> /x3C LESS-THAN SIGN -<=> /x3D ETQUALS SIGN +<=> /x3D EQUALS SIGN > /x3E GREATER-THAN SIGN - /x3F TQUESTION MARK + /x3F QUESTION MARK /x40 COMMERCIAL AT /x41 LATIN CAPITAL LETTER A /x42 LATIN CAPITAL LETTER B @@ -98,9 +98,9 @@ CHARMAP /x58 LATIN CAPITAL LETTER X /x59 LATIN CAPITAL LETTER Y /x5A LATIN CAPITAL LETTER Z -<<(> /x5B LEFT STQUARE BRACKET +<<(> /x5B LEFT SQUARE BRACKET /x5C REVERSE SOLIDUS -<)/>> /x5D RIGHT STQUARE BRACKET +<)/>> /x5D RIGHT SQUARE BRACKET <'/>> /x5E CIRCUMFLEX ACCENT <_> /x5F LOW LINE <'!> /x60 GRAVE ACCENT @@ -162,7 +162,7 @@ CHARMAP /x98 START OF STRING (SOS) /x99 SINGLE GRAPHIC CHARACTER INTRODUCER (SGCI) /x9A SINGLE CHARACTER INTRODUCER (SCI) - /x9B CONTROL SETQUENCE INTRODUCER (CSI) + /x9B CONTROL SEQUENCE INTRODUCER (CSI) /x9C STRING TERMINATOR (ST) /x9D OPERATING SYSTEM COMMAND (OSC) /x9E PRIVACY MESSAGE (PM) @@ -175,9 +175,9 @@ CHARMAP /xA6 NUMBER SIGN /xA7 SECTION SIGN /xA8 CURRENCY SIGN -<'6> /xA9 LEFT SINGLE TQUOTATION MARK -<"6> /xAA LEFT DOUBLE TQUOTATION MARK -<<<> /xAB LEFT-POINTING DOUBLE ANGLE TQUOTATION MARK +<'6> /xA9 LEFT SINGLE QUOTATION MARK +<"6> /xAA LEFT DOUBLE QUOTATION MARK +<<<> /xAB LEFT-POINTING DOUBLE ANGLE QUOTATION MARK <<-> /xAC LEFTWARDS ARROW <-!> /xAD UPWARDS ARROW <-/>> /xAE RIGHTWARDS ARROW @@ -191,13 +191,13 @@ CHARMAP /xB6 PILCROW SIGN <.M> /xB7 MIDDLE DOT <-:> /xB8 DIVISION SIGN -<'9> /xB9 RIGHT SINGLE TQUOTATION MARK -<"9> /xBA RIGHT DOUBLE TQUOTATION MARK -/>> /xBB RIGHT-POINTING DOUBLE ANGLE TQUOTATION MARK -<14> /xBC VULGAR FRACTION ONE TQUARTER +<'9> /xB9 RIGHT SINGLE QUOTATION MARK +<"9> /xBA RIGHT DOUBLE QUOTATION MARK +/>> /xBB RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK +<14> /xBC VULGAR FRACTION ONE QUARTER <12> /xBD VULGAR FRACTION ONE HALF -<34> /xBE VULGAR FRACTION THREE TQUARTERS - /xBF INVERTED TQUESTION MARK +<34> /xBE VULGAR FRACTION THREE QUARTERS + /xBF INVERTED QUESTION MARK <"!> /xC1 NON-SPACING GRAVE ACCENT (not a real character) <"'> /xC2 NON-SPACING ACUTE ACCENT (not a real character) <"/>> /xC3 NON-SPACING CIRCUMFLEX ACCENT (not a real character) @@ -459,7 +459,7 @@ CHARMAP /x7F DELETE (DEL) /x20 SPACE /x21 EXCLAMATION MARK - /x22 TQUOTATION MARK + /x22 QUOTATION MARK /xA6 NUMBER SIGN /xA4 DOLLAR SIGN /x25 PERCENT SIGN @@ -489,14 +489,14 @@ CHARMAP /x3A COLON /x3B SEMICOLON /x3C LESS-THAN SIGN - /x3D ETQUALS SIGN + /x3D EQUALS SIGN /x3E GREATER-THAN SIGN - /x3F TQUESTION MARK + /x3F QUESTION MARK /x40 COMMERCIAL AT - /x5B LEFT STQUARE BRACKET + /x5B LEFT SQUARE BRACKET /x5C REVERSE SOLIDUS /x5C REVERSE SOLIDUS - /x5D RIGHT STQUARE BRACKET + /x5D RIGHT SQUARE BRACKET /x5E CIRCUMFLEX ACCENT /x5E CIRCUMFLEX ACCENT /x5F LOW LINE diff --git a/qtjava/javalib/examples/qwerty/IBM277.map b/qtjava/javalib/examples/qwerty/IBM277.map index 75ad08c2..51a2472d 100644 --- a/qtjava/javalib/examples/qwerty/IBM277.map +++ b/qtjava/javalib/examples/qwerty/IBM277.map @@ -67,7 +67,7 @@ CHARMAP /x38 START OF STRING (SOS) /x39 SINGLE GRAPHIC CHARACTER INTRODUCER (SGCI) /x3A SINGLE CHARACTER INTRODUCER (SCI) - /x3B CONTROL SETQUENCE INTRODUCER (CSI) + /x3B CONTROL SEQUENCE INTRODUCER (CSI) /x3C DEVICE CONTROL FOUR (DC4) /x3D NEGATIVE ACKNOWLEDGE (NAK) /x3E PRIVACY MESSAGE (PM) @@ -119,7 +119,7 @@ CHARMAP <%> /x6C PERCENT SIGN <_> /x6D LOW LINE > /x6E GREATER-THAN SIGN - /x6F TQUESTION MARK + /x6F QUESTION MARK /x70 BROKEN BAR /x71 LATIN CAPITAL LETTER E WITH ACUTE > /x72 LATIN CAPITAL LETTER E WITH CIRCUMFLEX @@ -134,8 +134,8 @@ CHARMAP /x7B LATIN CAPITAL LETTER AE /x7C LATIN CAPITAL LETTER O WITH STROKE <'> /x7D APOSTROPHE -<=> /x7E ETQUALS SIGN -<"> /x7F TQUOTATION MARK +<=> /x7E EQUALS SIGN +<"> /x7F QUOTATION MARK /x80 COMMERCIAL AT /x81 LATIN SMALL LETTER A /x82 LATIN SMALL LETTER B @@ -146,8 +146,8 @@ CHARMAP /x87 LATIN SMALL LETTER G /x88 LATIN SMALL LETTER H /x89 LATIN SMALL LETTER I -<<<> /x8A LEFT-POINTING DOUBLE ANGLE TQUOTATION MARK -/>> /x8B RIGHT-POINTING DOUBLE ANGLE TQUOTATION MARK +<<<> /x8A LEFT-POINTING DOUBLE ANGLE QUOTATION MARK +/>> /x8B RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK /x8C LATIN SMALL LETTER ETH (Icelandic) /x8D LATIN SMALL LETTER Y WITH ACUTE

/x8E LATIN SMALL LETTER THORN (Icelandic) @@ -166,8 +166,8 @@ CHARMAP <-o> /x9B MASCULINE ORDINAL INDICATOR <(!> /x9C LEFT CURLY BRACKET <',> /x9D CEDILLA -<<(> /x9E LEFT STQUARE BRACKET -<)/>> /x9F RIGHT STQUARE BRACKET +<<(> /x9E LEFT SQUARE BRACKET +<)/>> /x9F RIGHT SQUARE BRACKET /xA0 MICRO SIGN /xA1 LATIN SMALL LETTER U WITH DIAERESIS /xA2 LATIN SMALL LETTER S @@ -179,7 +179,7 @@ CHARMAP /xA8 LATIN SMALL LETTER Y /xA9 LATIN SMALL LETTER Z /xAA INVERTED EXCLAMATION MARK - /xAB INVERTED TQUESTION MARK + /xAB INVERTED QUESTION MARK /xAC LATIN CAPITAL LETTER ETH (Icelandic) /xAD LATIN CAPITAL LETTER Y WITH ACUTE /xAE LATIN CAPITAL LETTER THORN (Icelandic) @@ -191,9 +191,9 @@ CHARMAP /xB4 COPYRIGHT SIGN /xB5 SECTION SIGN /xB6 PILCROW SIGN -<14> /xB7 VULGAR FRACTION ONE TQUARTER +<14> /xB7 VULGAR FRACTION ONE QUARTER <12> /xB8 VULGAR FRACTION ONE HALF -<34> /xB9 VULGAR FRACTION THREE TQUARTERS +<34> /xB9 VULGAR FRACTION THREE QUARTERS /xBA NOT SIGN /xBB VERTICAL LINE <'-> /xBC OVERLINE @@ -298,7 +298,7 @@ CHARMAP /x07 DELETE (DEL) /x40 SPACE /x4F EXCLAMATION MARK - /x7F TQUOTATION MARK + /x7F QUOTATION MARK /x4A NUMBER SIGN /x67 DOLLAR SIGN /x6C PERCENT SIGN @@ -328,14 +328,14 @@ CHARMAP /x7A COLON /x5E SEMICOLON /x4C LESS-THAN SIGN - /x7E ETQUALS SIGN + /x7E EQUALS SIGN /x6E GREATER-THAN SIGN - /x6F TQUESTION MARK + /x6F QUESTION MARK /x80 COMMERCIAL AT - /x9E LEFT STQUARE BRACKET + /x9E LEFT SQUARE BRACKET /xE0 REVERSE SOLIDUS /xE0 REVERSE SOLIDUS - /x9F RIGHT STQUARE BRACKET + /x9F RIGHT SQUARE BRACKET /x5F CIRCUMFLEX ACCENT /x5F CIRCUMFLEX ACCENT /x6D LOW LINE diff --git a/qtjava/javalib/examples/widgets/WidgetView.java b/qtjava/javalib/examples/widgets/WidgetView.java index f8261edf..35e76039 100644 --- a/qtjava/javalib/examples/widgets/WidgetView.java +++ b/qtjava/javalib/examples/widgets/WidgetView.java @@ -502,7 +502,7 @@ WidgetView( TQWidget parent, String name ) mleText += (char) 0x00d8; // Norwegian mleText += "\n"; mleText += "Unicode (black square):"; - mleText += (char) 0x25A0; // BLACK STQUARE + mleText += (char) 0x25A0; // BLACK SQUARE mleText += "\n"; mle.setText( mleText ); TQToolTip.add( mle, "second multi line editor" ); diff --git a/qtruby/AUTHORS b/qtruby/AUTHORS index f7c0c985..3b98da28 100644 --- a/qtruby/AUTHORS +++ b/qtruby/AUTHORS @@ -43,7 +43,7 @@ QtRuby is a ruby version of the PerlQt/Smoke project, written by: Germain Garand David Faure -Etquipment +Equipment 800 Mhz iBook with Yellow Dog 3.0, Macally Micro 3 button mouse Books diff --git a/qtruby/INSTALL b/qtruby/INSTALL index 570c0045..f2b39996 100644 --- a/qtruby/INSTALL +++ b/qtruby/INSTALL @@ -119,7 +119,7 @@ Info.plist is CFBundleExecutable Shoot CFBundleIdentifier - jp.co.ryutaro.qttquit + jp.co.ryutaro.qtquit CFBundlePackageType APPL CFBundleSignature diff --git a/qtruby/rubylib/examples/ruboids/ruboids/Graphics.rb b/qtruby/rubylib/examples/ruboids/ruboids/Graphics.rb index ba50f364..931167b0 100644 --- a/qtruby/rubylib/examples/ruboids/ruboids/Graphics.rb +++ b/qtruby/rubylib/examples/ruboids/ruboids/Graphics.rb @@ -32,7 +32,7 @@ class Graphics # Defines counter-clockwise points used in OpenGL TRIANGLE_STRIP to # create a circle on the X/Z plane. Don't include center point here; # It is added when outputting the circle. - STQUARE = [ + SQUARE = [ XPLUS, ZMINUS, XMINUS, ZPLUS, XPLUS ] @@ -225,7 +225,7 @@ class Graphics def Graphics.circle(iterations = DEFAULT_SPHERE_ITERATIONS, counterClockwise = true) if @@circles[iterations].nil? - @@circles[iterations] = buildCircle(iterations, STQUARE) + @@circles[iterations] = buildCircle(iterations, SQUARE) end circle = @@circles[iterations] diff --git a/smoke/kde/qtguess.pl.in b/smoke/kde/qtguess.pl.in index ba378f5a..89b8aa39 100644 --- a/smoke/kde/qtguess.pl.in +++ b/smoke/kde/qtguess.pl.in @@ -5,7 +5,7 @@ # author: germain Garand # licence: GPL v.2 -# options: -q: be tquieter +# options: -q: be quieter # -o file: redirect output to "file". (default: ./qtdefines) # -t [0..15]: set the testing threshold (see below) # -f "flags": additional compiler flags/parameters diff --git a/smoke/qt/qtguess.pl.in b/smoke/qt/qtguess.pl.in index ba378f5a..89b8aa39 100644 --- a/smoke/qt/qtguess.pl.in +++ b/smoke/qt/qtguess.pl.in @@ -5,7 +5,7 @@ # author: germain Garand # licence: GPL v.2 -# options: -q: be tquieter +# options: -q: be quieter # -o file: redirect output to "file". (default: ./qtdefines) # -t [0..15]: set the testing threshold (see below) # -f "flags": additional compiler flags/parameters -- cgit v1.2.1