Fix inadvertent "TQ" changes.

pull/1/head
Darrell Anderson 13 years ago
parent b52ba2888b
commit 3b07e4ebbf

@ -248,7 +248,7 @@ bool PseudoDTD::parseAttributes( TQDomDocument *doc, TQProgressDialog *progress
if( ! attributeElem.isNull() ) if( ! attributeElem.isNull() )
{ {
if ( attributeElem.attribute("type") == "#RETQUIRED" ) if ( attributeElem.attribute("type") == "#REQUIRED" )
attrs.requiredAttributes.append( attributeElem.attribute("name") ); attrs.requiredAttributes.append( attributeElem.attribute("name") );
else else
attrs.optionalAttributes.append( attributeElem.attribute("name") ); attrs.optionalAttributes.append( attributeElem.attribute("name") );

@ -242,7 +242,7 @@ void ArchiveDialog::saveArchiveRecursive(const DOM::Node &pNode, const KURL& bas
/* Skip BASE, everything is relative to index.html /* Skip BASE, everything is relative to index.html
* Saving SCRIPT but they can cause trouble! * Saving SCRIPT but they can cause trouble!
*/ */
} else if ((nodeName == "META") && hasAttribute(pNode, "HTTP-ETQUIV", "CONTENT-TYPE")) { } else if ((nodeName == "META") && hasAttribute(pNode, "HTTP-EQUIV", "CONTENT-TYPE")) {
/* Skip content-type meta tag, we provide our own. /* Skip content-type meta tag, we provide our own.
*/ */
} else { } else {

@ -29,7 +29,7 @@ const char *const DEFAULT_NAME =
"Everything2," "Everything2,"
"Everything2 (author info)"; "Everything2 (author info)";
const char *const DEFAULT_TQUERY = const char *const DEFAULT_QUERY =
"http://www.google.com/search?q=lyrics+$(title)+$(author)+$(album)," "http://www.google.com/search?q=lyrics+$(title)+$(author)+$(album),"
"http://www.purelyrics.com/index.php?search_artist=$(author)&search_album=$(album)&search_title=$(title)&search_lyrics=&search_advsubmit2=Search," "http://www.purelyrics.com/index.php?search_artist=$(author)&search_album=$(album)&search_title=$(title)&search_lyrics=&search_advsubmit2=Search,"
"http://search.sing365.com/search.php?searchstr=$(title)&submit=search&category=song," "http://search.sing365.com/search.php?searchstr=$(title)&submit=search&category=song,"
@ -205,7 +205,7 @@ void LyricsCModule::reopen() {
queryList = conf->readListEntry( "queryList" ); queryList = conf->readListEntry( "queryList" );
nameList = conf->readListEntry( "nameList" ); nameList = conf->readListEntry( "nameList" );
if ( queryList.count() == 0 && nameList.count() == 0 ) { if ( queryList.count() == 0 && nameList.count() == 0 ) {
queryList = TQStringList::split( ",", DEFAULT_TQUERY ); queryList = TQStringList::split( ",", DEFAULT_QUERY );
nameList = TQStringList::split( ",", DEFAULT_NAME ); nameList = TQStringList::split( ",", DEFAULT_NAME );
} }
TQStringList::Iterator queryIt, nameIt; TQStringList::Iterator queryIt, nameIt;

@ -36,7 +36,7 @@ int OutputSDL::display(Bitmap *source)
{ {
switch (event.type) switch (event.type)
{ {
case SDL_TQUIT: case SDL_QUIT:
return Exit; return Exit;
default: default:
break; break;

@ -1,8 +1,8 @@
// Copyright (c) 2003-2005 Charles Samuels <charles@kde.org> // Copyright (c) 2003-2005 Charles Samuels <charles@kde.org>
// See the file COPYING for redistribution terms. // See the file COPYING for redistribution terms.
#ifndef OBLITQUE_H #ifndef OBLIQUE_H
#define OBLITQUE_H #define OBLIQUE_H
#include <noatun/playlist.h> #include <noatun/playlist.h>
#include <noatun/plugin.h> #include <noatun/plugin.h>

@ -1,8 +1,8 @@
// Copyright (c) 2003 Charles Samuels <charles@kde.org> // Copyright (c) 2003 Charles Samuels <charles@kde.org>
// See the file COPYING for redistribution terms. // See the file COPYING for redistribution terms.
#ifndef TQUERY_H #ifndef QUERY_H
#define TQUERY_H #define QUERY_H
#include "base.h" #include "base.h"

Loading…
Cancel
Save