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.attribute("type") == "#RETQUIRED" )
if ( attributeElem.attribute("type") == "#REQUIRED" )
attrs.requiredAttributes.append( attributeElem.attribute("name") );
else
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
* 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.
*/
} else {

@ -29,7 +29,7 @@ const char *const DEFAULT_NAME =
"Everything2,"
"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.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,"
@ -205,7 +205,7 @@ void LyricsCModule::reopen() {
queryList = conf->readListEntry( "queryList" );
nameList = conf->readListEntry( "nameList" );
if ( queryList.count() == 0 && nameList.count() == 0 ) {
queryList = TQStringList::split( ",", DEFAULT_TQUERY );
queryList = TQStringList::split( ",", DEFAULT_QUERY );
nameList = TQStringList::split( ",", DEFAULT_NAME );
}
TQStringList::Iterator queryIt, nameIt;

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

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

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

Loading…
Cancel
Save