summaryrefslogtreecommitdiffstats
path: root/amarok/src
diff options
context:
space:
mode:
Diffstat (limited to 'amarok/src')
-rw-r--r--amarok/src/engine/yauap/yauap-engine.cpp8
-rw-r--r--amarok/src/loader/loader.cpp2
-rw-r--r--amarok/src/mediadevice/njb/track.h2
-rw-r--r--amarok/src/metabundle.cpp2
-rw-r--r--amarok/src/osd.cpp4
-rw-r--r--amarok/src/scripts/databasescripts/README2
-rw-r--r--amarok/src/scripts/templates/amarok.rb2
-rw-r--r--amarok/src/scripts/templates/ruby_qt_template.rb4
8 files changed, 13 insertions, 13 deletions
diff --git a/amarok/src/engine/yauap/yauap-engine.cpp b/amarok/src/engine/yauap/yauap-engine.cpp
index 1549a55d..2506b482 100644
--- a/amarok/src/engine/yauap/yauap-engine.cpp
+++ b/amarok/src/engine/yauap/yauap-engine.cpp
@@ -83,7 +83,7 @@ yauapProcess::commSetupDoneC()
return r;
}
-/* create a qt dbus connection that will receive the signals */
+/* create a tqt dbus connection that will receive the signals */
bool
DBusConnection::open()
{
@@ -105,7 +105,7 @@ DBusConnection::open()
}
dbus_connection_set_exit_on_disconnect( dbus_connection, false );
- /* create qt connection */
+ /* create tqt connection */
qt_connection = new DBusQt::Connection( this );
qt_connection->dbus_connection_setup_with_qt_main( dbus_connection );
@@ -128,7 +128,7 @@ DBusConnection::open()
return true;
}
-/* close qt dbus connection */
+/* close tqt dbus connection */
void
DBusConnection::close()
{
@@ -405,7 +405,7 @@ yauapEngine::initDbusConnection()
}
#endif
- /* create and open qt DBus connection so that we are able to receive signals */
+ /* create and open tqt DBus connection so that we are able to receive signals */
con = new DBusConnection( this );
if (!con->open())
{
diff --git a/amarok/src/loader/loader.cpp b/amarok/src/loader/loader.cpp
index e570d9c1..217ddcd1 100644
--- a/amarok/src/loader/loader.cpp
+++ b/amarok/src/loader/loader.cpp
@@ -52,7 +52,7 @@ main( int argc, char *argv[] )
// These arguments cannot be passed to Amarok, or Amarok will exit
// after processing them.
TQStringList longs; longs
- << "-help" << "-help-qt" << "-help-kde" << "-help-all" << "-author" << "-version" << "-license" << "-v";
+ << "-help" << "-help-tqt" << "-help-tde" << "-help-all" << "-author" << "-version" << "-license" << "-v";
// both --arg and -arg are valid
{
diff --git a/amarok/src/mediadevice/njb/track.h b/amarok/src/mediadevice/njb/track.h
index 1046375a..5565a76e 100644
--- a/amarok/src/mediadevice/njb/track.h
+++ b/amarok/src/mediadevice/njb/track.h
@@ -20,7 +20,7 @@
#define __track_h__
-// qt
+// tqt
#include <tqstring.h>
// libnjb
diff --git a/amarok/src/metabundle.cpp b/amarok/src/metabundle.cpp
index 3a6d199e..44a17510 100644
--- a/amarok/src/metabundle.cpp
+++ b/amarok/src/metabundle.cpp
@@ -1507,7 +1507,7 @@ MetaBundle::save( TagLib::FileRef* fileref )
return returnval;
}
-// QT's version encodeAttr is 1) private to TQDom, and 2) a litte slow. This
+// TQt's version encodeAttr is 1) private to TQDom, and 2) a litte slow. This
// one can be made public if needed. It happens to be on a critical path
// (each char of playlist / undo save). TQStyleSheet::escape does not deal with
// unicode chars illegal for XML. There's a lot of junk in those tags
diff --git a/amarok/src/osd.cpp b/amarok/src/osd.cpp
index 74bfa51e..af5bdfd8 100644
--- a/amarok/src/osd.cpp
+++ b/amarok/src/osd.cpp
@@ -284,7 +284,7 @@ OSDWidget::render( const uint M, const TQSize &size )
TQPoint point;
TQRect rect( point, size );
- // From qt sources
+ // From tqt sources
const uint xround = (M * 200) / size.width();
const uint yround = (M * 200) / size.height();
@@ -522,7 +522,7 @@ OSDWidget::paintMe()
// Convert the ARGB pixmap to an ARGB image
// NOTE 1: TQPixmap::convertToImage() always converts an ARGB pixmap into an RGB image
- // NOTE 2: This should eventually make its way into tdelibs or Qt itself,
+ // NOTE 2: This should eventually make its way into tdelibs or TQt itself,
// as it would also be useful in applications other than Amarok
int w = blendedImage.width();
int h = blendedImage.height();
diff --git a/amarok/src/scripts/databasescripts/README b/amarok/src/scripts/databasescripts/README
index d61d188f..3dcefee5 100644
--- a/amarok/src/scripts/databasescripts/README
+++ b/amarok/src/scripts/databasescripts/README
@@ -47,7 +47,7 @@ so i can include them in the release!
<ul>
<li>Amarok 1.3.1</li>
<li>Ruby 1.8</li>
-<li>Korundum Ruby/Qt bindings</li>
+<li>Korundum Ruby/TQt bindings</li>
</ul>
</p>
diff --git a/amarok/src/scripts/templates/amarok.rb b/amarok/src/scripts/templates/amarok.rb
index 42a7ca0c..e60989d3 100644
--- a/amarok/src/scripts/templates/amarok.rb
+++ b/amarok/src/scripts/templates/amarok.rb
@@ -37,7 +37,7 @@ end
class AmaroKLib
#Either way, AmaroKLib depends of QtRuby by virtue of using the QtIoListener.
-#Making a non-Qt alternative to QtIoListener shouldn't be too difficult,
+#Making a non-TQt alternative to QtIoListener shouldn't be too difficult,
#you'll just have to get your hands dirty with threads and then modify the definition of
#@listen in this class. And send me the class for inclusion in this template. :)
def initialize(app, commandSlots)
diff --git a/amarok/src/scripts/templates/ruby_qt_template.rb b/amarok/src/scripts/templates/ruby_qt_template.rb
index 4a13d11f..385a8da4 100644
--- a/amarok/src/scripts/templates/ruby_qt_template.rb
+++ b/amarok/src/scripts/templates/ruby_qt_template.rb
@@ -19,7 +19,7 @@
# 51 Franklin Steet, Fifth Floor, Boston, MA 02110-1301, USA. #
############################################################################
-require 'Qt'
+require 'TQt'
require "#{File.dirname( File.expand_path(__FILE__))}/amarok.rb"
#a simple method to call DCOP. If you use Korundum, you can use
@@ -62,4 +62,4 @@ end
a = TQt::Application.new(ARGV)
e = ExampleActions.new(a)
AmarokCommunication = AmaroKLib.new(a, e)
-a.exec() \ No newline at end of file
+a.exec()