Remove spurious TQ_OBJECT instances

pull/1/head
Timothy Pearson 12 years ago
parent f3c15a2d43
commit 943520ceea

@ -102,7 +102,7 @@ namespace barcodeRecognition {
*/
class barcodeRecognitionThread : public TQObject, public TQThread {
Q_OBJECT
TQ_OBJECT
public:
barcodeRecognitionThread();
~barcodeRecognitionThread();

@ -34,7 +34,7 @@ namespace Tellico {
*/
class BorrowerDialog : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
static Data::BorrowerPtr getBorrower(TQWidget* parent);

@ -49,7 +49,7 @@ namespace Tellico {
*/
class Collection : public TQObject, public KShared {
Q_OBJECT
TQ_OBJECT
public:
enum Type {

@ -51,7 +51,7 @@ private:
*/
class CollectionFieldsDialog : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -29,7 +29,7 @@ namespace Tellico {
*/
class BibtexCollection : public Collection {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -24,7 +24,7 @@ namespace Tellico {
*/
class BoardGameCollection : public Collection {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -53,7 +53,7 @@ namespace Tellico {
*/
class BookCollection : public Collection {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -29,7 +29,7 @@ namespace Tellico {
*/
class CardCollection : public Collection {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -29,7 +29,7 @@ namespace Tellico {
*/
class CoinCollection : public Collection {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -29,7 +29,7 @@ namespace Tellico {
*/
class ComicBookCollection : public Collection {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -24,7 +24,7 @@ namespace Tellico {
*/
class FileCatalog : public Collection {
Q_OBJECT
TQ_OBJECT
public:
FileCatalog(bool addFields, const TQString& title = TQString());

@ -24,7 +24,7 @@ namespace Tellico {
*/
class GameCollection : public Collection {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -34,7 +34,7 @@ namespace Tellico {
*/
class MusicCollection : public Collection {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -46,7 +46,7 @@ namespace Tellico {
*/
class StampCollection : public Collection {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -33,7 +33,7 @@ namespace Tellico {
*/
class VideoCollection : public Collection {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -34,7 +34,7 @@ namespace Tellico {
*/
class WineCollection : public Collection {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -47,7 +47,7 @@ namespace Tellico {
*/
class ConfigDialog : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -37,7 +37,7 @@ class Observer;
*/
class Controller : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
static Controller* self() { return s_self; }

@ -21,7 +21,7 @@ namespace Tellico {
class DropHandler : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
DropHandler(TQObject* parent);

@ -27,7 +27,7 @@ namespace Tellico {
class NetAccess : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
static bool download(const KURL& u, TQString& target, TQWidget* window);

@ -35,7 +35,7 @@ namespace Tellico {
*/
class DetailedListView : public GUI::ListView, public Observer {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -39,7 +39,7 @@ namespace Tellico {
*/
class Document : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
static Document* self() { if(!s_self) s_self = new Document(); return s_self; }

@ -40,7 +40,7 @@ namespace Tellico {
*/
class EntryGroup : public TQObject, public EntryVec {
Q_OBJECT
TQ_OBJECT
public:
EntryGroup(const TQString& group, const TQString& field);

@ -33,7 +33,7 @@ namespace Tellico {
*/
class EntryEditDialog : public KDialogBase, public Observer {
Q_OBJECT
TQ_OBJECT
// needed for completion object support
friend class GUI::FieldWidget;

@ -33,7 +33,7 @@ namespace Tellico {
*/
class EntryIconView : public KIconView, public Observer {
Q_OBJECT
TQ_OBJECT
friend class EntryIconViewItem;

@ -25,7 +25,7 @@ namespace Tellico {
*/
class EntryMerger : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
EntryMerger(Data::EntryVec entries, TQObject* parent);

@ -27,7 +27,7 @@ namespace Tellico {
*/
class EntryUpdater : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
EntryUpdater(Data::CollPtr coll, Data::EntryVec entries, TQObject* parent);
EntryUpdater(const TQString& fetcher, Data::CollPtr coll, Data::EntryVec entries, TQObject* parent);

@ -33,7 +33,7 @@ namespace Tellico {
*/
class EntryView : public KHTMLPart {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -33,7 +33,7 @@ namespace Tellico {
*/
class ExportDialog : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
ExportDialog(Export::Format format, Data::CollPtr coll, TQWidget* parent, const char* name);

@ -48,7 +48,7 @@ namespace Tellico {
*/
class AmazonFetcher : public Fetcher {
Q_OBJECT
TQ_OBJECT
public:
enum Site {
@ -138,7 +138,7 @@ private:
class AmazonFetcher::ConfigWidget : public Fetch::ConfigWidget {
Q_OBJECT
TQ_OBJECT
public:
ConfigWidget(TQWidget* parent_, const AmazonFetcher* fetcher = 0);

@ -34,7 +34,7 @@ namespace Tellico {
*/
class AnimeNfoFetcher : public Fetcher {
Q_OBJECT
TQ_OBJECT
public:
AnimeNfoFetcher(TQObject* parent, const char* name = 0);

@ -34,7 +34,7 @@ namespace Tellico {
*/
class ArxivFetcher : public Fetcher {
Q_OBJECT
TQ_OBJECT
public:
ArxivFetcher(TQObject* parent);

@ -31,7 +31,7 @@ namespace Tellico {
*/
class BibsonomyFetcher : public Fetcher {
Q_OBJECT
TQ_OBJECT
public:
BibsonomyFetcher(TQObject* parent);

@ -31,7 +31,7 @@ namespace Tellico {
*/
class CitebaseFetcher : public Fetcher {
Q_OBJECT
TQ_OBJECT
public:
CitebaseFetcher(TQObject* parent);

@ -31,7 +31,7 @@ namespace Tellico {
*/
class ConfigWidget : public TQWidget {
Q_OBJECT
TQ_OBJECT
public:
ConfigWidget(TQWidget* parent);

@ -36,7 +36,7 @@ namespace Tellico {
*/
class CrossRefFetcher : public Fetcher {
Q_OBJECT
TQ_OBJECT
public:
CrossRefFetcher(TQObject* parent);

@ -41,7 +41,7 @@ namespace Tellico {
*/
class DiscogsFetcher : public Fetcher {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -37,7 +37,7 @@ namespace Tellico {
*/
class EntrezFetcher : public Fetcher {
Q_OBJECT
TQ_OBJECT
public:
EntrezFetcher(TQObject* parent, const char* name=0);

@ -40,7 +40,7 @@ namespace Tellico {
*/
class ExecExternalFetcher : public Fetcher {
Q_OBJECT
TQ_OBJECT
public:
ExecExternalFetcher(TQObject* parent, const char* name=0);

@ -37,7 +37,7 @@ namespace Tellico {
*/
class Fetcher : public TQObject, public KShared {
Q_OBJECT
TQ_OBJECT
public:
typedef KSharedPtr<Fetcher> Ptr;

@ -45,7 +45,7 @@ typedef Vector<Fetcher> FetcherVec;
*/
class Manager : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
static Manager* self() { if(!s_self) s_self = new Manager(); return s_self; }

@ -35,7 +35,7 @@ namespace Tellico {
*/
class GCstarPluginFetcher : public Fetcher {
Q_OBJECT
TQ_OBJECT
public:
@ -93,7 +93,7 @@ private:
class GCstarPluginFetcher::ConfigWidget : public Fetch::ConfigWidget {
Q_OBJECT
TQ_OBJECT
public:
ConfigWidget(TQWidget* parent, const GCstarPluginFetcher* fetcher = 0);

@ -35,7 +35,7 @@ namespace Tellico {
*/
class GoogleScholarFetcher : public Fetcher {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -34,7 +34,7 @@ namespace Tellico {
*/
class IBSFetcher : public Fetcher {
Q_OBJECT
TQ_OBJECT
public:
IBSFetcher(TQObject* parent, const char* name = 0);

@ -38,7 +38,7 @@ namespace Tellico {
*/
class IMDBFetcher : public Fetcher {
Q_OBJECT
TQ_OBJECT
public:
IMDBFetcher(TQObject* parent, const char* name=0);

@ -35,7 +35,7 @@ namespace Tellico {
*/
class ISBNdbFetcher : public Fetcher {
Q_OBJECT
TQ_OBJECT
public:
ISBNdbFetcher(TQObject* parent = 0, const char* name = 0);

@ -48,7 +48,7 @@ class SRUConfigWidget;
*/
class SRUFetcher : public Fetcher {
Q_OBJECT
TQ_OBJECT
friend class SRUConfigWidget;
@ -109,7 +109,7 @@ private:
class SRUConfigWidget : public ConfigWidget {
Q_OBJECT
TQ_OBJECT
friend class SRUFetcher;

@ -37,7 +37,7 @@ namespace Tellico {
*/
class YahooFetcher : public Fetcher {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -50,7 +50,7 @@ namespace Tellico {
*/
class Z3950Fetcher : public Fetcher {
Q_OBJECT
TQ_OBJECT
public:
Z3950Fetcher(TQObject* parent, const char* name = 0);
@ -122,7 +122,7 @@ private:
class Z3950Fetcher::ConfigWidget : public Fetch::ConfigWidget {
Q_OBJECT
TQ_OBJECT
public:
ConfigWidget(TQWidget* parent, const Z3950Fetcher* fetcher = 0);

@ -53,7 +53,7 @@ namespace Tellico {
*/
class FetchDialog : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -35,7 +35,7 @@ namespace Tellico {
*/
class FetcherConfigDialog : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
FetcherConfigDialog(TQWidget* parent);

@ -23,7 +23,7 @@ namespace Tellico {
*/
class FieldCompletion : public KCompletion {
Q_OBJECT
TQ_OBJECT
public:
FieldCompletion(bool multiple);

@ -47,7 +47,7 @@ namespace Tellico {
*/
class FilterRuleWidget : public TQHBox {
Q_OBJECT
TQ_OBJECT
public:
/**
@ -99,7 +99,7 @@ private:
class FilterRuleWidgetLister : public KWidgetLister {
Q_OBJECT
TQ_OBJECT
public:
FilterRuleWidgetLister(TQWidget* parent, const char* name=0);
@ -124,7 +124,7 @@ protected:
*/
class FilterDialog : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
enum Mode {

@ -27,7 +27,7 @@ namespace Tellico {
*/
class FilterView : public GUI::ListView, public Observer {
Q_OBJECT
TQ_OBJECT
public:
FilterView(TQWidget* parent, const char* name=0);

@ -41,7 +41,7 @@ namespace Tellico {
*/
class GroupView : public GUI::ListView, public Observer {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -28,7 +28,7 @@ namespace Tellico {
*/
class BoolFieldWidget : public FieldWidget {
Q_OBJECT
TQ_OBJECT
public:
BoolFieldWidget(Data::FieldPtr field, TQWidget* parent, const char* name=0);

@ -27,7 +27,7 @@ namespace Tellico {
*/
class ChoiceFieldWidget : public FieldWidget {
Q_OBJECT
TQ_OBJECT
public:
ChoiceFieldWidget(Data::FieldPtr field, TQWidget* parent, const char* name=0);

@ -28,7 +28,7 @@ namespace Tellico {
*/
class DateFieldWidget : public FieldWidget {
Q_OBJECT
TQ_OBJECT
public:
DateFieldWidget(Data::FieldPtr field, TQWidget* parent, const char* name=0);

@ -29,7 +29,7 @@ namespace Tellico {
class SpinBox : public TQSpinBox {
Q_OBJECT
TQ_OBJECT
public:
SpinBox(int min, int max, TQWidget *parent);
@ -40,7 +40,7 @@ public:
*/
class DateWidget : public TQWidget {
Q_OBJECT
TQ_OBJECT
public:
DateWidget(TQWidget* parent, const char* name = 0);

@ -37,7 +37,7 @@ namespace Tellico {
*/
class FieldWidget : public TQWidget {
Q_OBJECT
TQ_OBJECT
public:
FieldWidget(Data::FieldPtr field, TQWidget* parent, const char* name=0);

@ -28,7 +28,7 @@ namespace Tellico {
*/
class ImageFieldWidget : public FieldWidget {
Q_OBJECT
TQ_OBJECT
public:
ImageFieldWidget(Data::FieldPtr field, TQWidget* parent, const char* name=0);

@ -34,7 +34,7 @@ namespace Tellico {
*/
class ImageWidget : public TQWidget {
Q_OBJECT
TQ_OBJECT
public:
ImageWidget(TQWidget* parent, const char* name = 0);

@ -62,7 +62,7 @@ class TQHBox;
class KWidgetLister : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
KWidgetLister( int minWidgets=1, int maxWidgets=8, TQWidget* parent=0, const char* name=0 );
virtual ~KWidgetLister();

@ -29,7 +29,7 @@ namespace Tellico {
*/
class LineEdit : public KLineEdit {
Q_OBJECT
TQ_OBJECT
public:
LineEdit(TQWidget* parent = 0, const char* name = 0);

@ -26,7 +26,7 @@ namespace Tellico {
*/
class LineFieldWidget : public FieldWidget {
Q_OBJECT
TQ_OBJECT
public:
LineFieldWidget(Data::FieldPtr field, TQWidget* parent, const char* name=0);

@ -42,7 +42,7 @@ typedef TQPtrListIterator<ListViewItem> ListViewItemListIt;
*/
class ListView : public KListView {
Q_OBJECT
TQ_OBJECT
friend class ListViewItem; // needed so the ListViewItem d'tor can update selection list

@ -28,7 +28,7 @@ namespace Tellico {
*/
class NumberFieldWidget : public FieldWidget {
Q_OBJECT
TQ_OBJECT
public:
NumberFieldWidget(Data::FieldPtr field, TQWidget* parent, const char* name=0);

@ -27,7 +27,7 @@ namespace Tellico {
*/
class OverlayWidget : public TQFrame {
Q_OBJECT
TQ_OBJECT
public:
OverlayWidget(TQWidget* parent, TQWidget* anchor);

@ -27,7 +27,7 @@ namespace Tellico {
*/
class ParaFieldWidget : public FieldWidget {
Q_OBJECT
TQ_OBJECT
public:
ParaFieldWidget(Data::FieldPtr field, TQWidget* parent, const char* name=0);

@ -28,7 +28,7 @@ namespace Tellico {
class PreviewDialog : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
PreviewDialog(TQWidget* parent);

@ -24,7 +24,7 @@ namespace Tellico {
*/
class Progress : public KProgress {
Q_OBJECT
TQ_OBJECT
public:
Progress(TQWidget* parent);

@ -26,7 +26,7 @@ namespace Tellico {
*/
class RatingFieldWidget : public FieldWidget {
Q_OBJECT
TQ_OBJECT
public:
RatingFieldWidget(Data::FieldPtr field, TQWidget* parent, const char* name=0);

@ -32,7 +32,7 @@ namespace Tellico {
*/
class RatingWidget : public TQHBox {
Q_OBJECT
TQ_OBJECT
typedef TQPtrList<TQLabel> LabelList;

@ -24,7 +24,7 @@ namespace Tellico {
*/
class RichTextLabel : public TQTextEdit {
Q_OBJECT
TQ_OBJECT
public:
RichTextLabel(TQWidget* parent);

@ -38,7 +38,7 @@ namespace Tellico {
*/
class StringMapDialog : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
StringMapDialog(const TQMap<TQString, TQString>& stringMap, TQWidget* parent, const char* name=0, bool modal=false);

@ -24,7 +24,7 @@ namespace Tellico {
*/
class TabControl : public TQTabWidget {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -28,7 +28,7 @@ namespace Tellico {
*/
class TableFieldWidget : public FieldWidget {
Q_OBJECT
TQ_OBJECT
public:
TableFieldWidget(Data::FieldPtr field, TQWidget* parent, const char* name=0);

@ -31,7 +31,7 @@ namespace Tellico {
*/
class URLFieldWidget : public FieldWidget {
Q_OBJECT
TQ_OBJECT
public:
URLFieldWidget(Data::FieldPtr field, TQWidget* parent, const char* name=0);

@ -35,7 +35,7 @@ namespace Tellico {
*/
class ImportDialog : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
ImportDialog(Import::Format format, const KURL::List& urls, TQWidget* parent, const char* name);

@ -34,7 +34,7 @@ namespace Tellico {
*/
class LoanDialog : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -30,7 +30,7 @@ namespace Tellico {
*/
class LoanView : public GUI::ListView, public Observer {
Q_OBJECT
TQ_OBJECT
public:
LoanView(TQWidget* parent, const char* name=0);

@ -72,7 +72,7 @@ namespace Tellico {
*/
class MainWindow : public KMainWindow, public ApplicationInterface {
Q_OBJECT
TQ_OBJECT
friend class Controller;
friend class DropHandler;

@ -43,7 +43,7 @@ namespace Tellico {
class Dialog : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
Dialog(DataType type, TQWidget* parent);

@ -56,7 +56,7 @@ struct DataSourceInfo {
class Manager : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
Manager(TQObject* parent);

@ -33,7 +33,7 @@ class Manager;
class NewScript : public SUPERCLASS {
Q_OBJECT
TQ_OBJECT
public:
NewScript(Manager* manager, TQWidget* parentWidget = 0);

@ -36,7 +36,7 @@ namespace Tellico {
class ProviderLoader : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
/**
* Constructor.

@ -30,7 +30,7 @@ class ProgressManager;
*/
class ProgressItem : public TQObject {
Q_OBJECT
TQ_OBJECT
friend class ProgressManager;
@ -80,7 +80,7 @@ private:
*/
class ProgressManager : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
virtual ~ProgressManager() {}

@ -31,7 +31,7 @@ namespace Tellico {
*/
class ReportDialog : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -30,7 +30,7 @@ namespace Tellico {
*/
class StatusBar : public KStatusBar {
Q_OBJECT
TQ_OBJECT
public:
void clearStatus();

@ -29,7 +29,7 @@ namespace Tellico {
*/
class AlexandriaExporter : public Exporter {
Q_OBJECT
TQ_OBJECT
public:
AlexandriaExporter() : Exporter() {}

@ -35,7 +35,7 @@ namespace Tellico {
*/
class AlexandriaImporter : public Importer {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -24,7 +24,7 @@ namespace Tellico {
*/
class AMCImporter : public DataImporter {
Q_OBJECT
TQ_OBJECT
public:
AMCImporter(const KURL& url);
virtual ~AMCImporter();

@ -33,7 +33,7 @@ namespace Tellico {
*/
class AudioFileImporter : public Importer {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -31,7 +31,7 @@ namespace Tellico {
*/
class BibtexExporter : public Exporter {
Q_OBJECT
TQ_OBJECT
public:
BibtexExporter();

@ -42,7 +42,7 @@ namespace Tellico {
*/
class BibtexImporter : public Importer {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -24,7 +24,7 @@ namespace Tellico {
*/
class BibtexmlExporter : public Exporter {
Q_OBJECT
TQ_OBJECT
public:
BibtexmlExporter() : Exporter() {}

@ -27,7 +27,7 @@ namespace Tellico {
*/
class BibtexmlImporter : public XMLImporter {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -31,7 +31,7 @@ namespace Tellico {
*/
class CSVExporter : public Exporter {
Q_OBJECT
TQ_OBJECT
public:
CSVExporter();

@ -40,7 +40,7 @@ namespace Tellico {
*/
class CSVImporter : public TextImporter {
Q_OBJECT
TQ_OBJECT
public:
class Parser;

@ -25,7 +25,7 @@ namespace Tellico {
*/
class DataImporter : public Importer {
Q_OBJECT
TQ_OBJECT
public:
enum Source { URL, Text };

@ -25,7 +25,7 @@ namespace Tellico {
*/
class DeliciousImporter : public XSLTImporter {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -45,7 +45,7 @@ namespace Tellico {
*/
class Exporter : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
Exporter();

@ -35,7 +35,7 @@ namespace Tellico {
*/
class FileListingImporter : public Importer {
Q_OBJECT
TQ_OBJECT
public:
FileListingImporter(const KURL& url);

@ -33,7 +33,7 @@ namespace Tellico {
*/
class FreeDBImporter : public Importer {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -26,7 +26,7 @@ namespace Tellico {
*/
class GCfilmsExporter : public Exporter {
Q_OBJECT
TQ_OBJECT
public:
GCfilmsExporter();

@ -27,7 +27,7 @@ namespace Tellico {
*/
class GCfilmsImporter : public TextImporter {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -32,7 +32,7 @@ namespace Tellico {
*/
class GriffithImporter : public Importer {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -29,7 +29,7 @@ namespace Tellico {
*/
class GRS1Importer : public TextImporter {
Q_OBJECT
TQ_OBJECT
public:
GRS1Importer(const TQString& text);

@ -40,7 +40,7 @@ namespace Tellico {
*/
class HTMLExporter : public Exporter {
Q_OBJECT
TQ_OBJECT
public:
HTMLExporter();

@ -41,7 +41,7 @@ namespace Tellico {
*/
class Importer : public TQObject {
Q_OBJECT
TQ_OBJECT
public:
Importer() : TQObject(), m_options(ImportProgress) {}

@ -30,7 +30,7 @@ namespace Tellico {
*/
class ONIXExporter : public Exporter {
Q_OBJECT
TQ_OBJECT
public:
ONIXExporter();

@ -21,7 +21,7 @@ namespace Tellico {
class PDFImporter : public Importer {
Q_OBJECT
TQ_OBJECT
public:
PDFImporter(const KURL::List& urls);

@ -28,7 +28,7 @@ namespace Tellico {
*/
class PilotDBExporter : public Exporter {
Q_OBJECT
TQ_OBJECT
public:
PilotDBExporter();

@ -25,7 +25,7 @@ namespace Tellico {
*/
class ReferencerImporter : public XSLTImporter {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -34,7 +34,7 @@ namespace Tellico {
*/
class RISImporter : public Importer {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -34,7 +34,7 @@ namespace Tellico {
*/
class TellicoImporter : public DataImporter {
Q_OBJECT
TQ_OBJECT
public:
enum Format { Unknown, Error, XML, Zip, Cancel };

@ -33,7 +33,7 @@ namespace Tellico {
*/
class TellicoXMLExporter : public Exporter {
Q_OBJECT
TQ_OBJECT
public:
TellicoXMLExporter();

@ -24,7 +24,7 @@ namespace Tellico {
*/
class TellicoZipExporter : public Exporter {
Q_OBJECT
TQ_OBJECT
public:
TellicoZipExporter() : Exporter(), m_includeImages(true), m_cancelled(false) {}

@ -26,7 +26,7 @@ namespace Tellico {
*/
class TextImporter : public Importer {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -28,7 +28,7 @@ namespace Tellico {
*/
class XMLImporter : public Importer {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -29,7 +29,7 @@ namespace Tellico {
*/
class XSLTImporter : public TextImporter {
Q_OBJECT
TQ_OBJECT
public:
/**

@ -23,7 +23,7 @@ namespace Tellico {
*/
class UPCValidator : public TQValidator {
Q_OBJECT
TQ_OBJECT
public:
UPCValidator(TQObject* parent, const char* name=0);

@ -27,7 +27,7 @@ namespace Tellico {
*/
class ViewStack : public TQWidgetStack {
Q_OBJECT
TQ_OBJECT
public:
ViewStack(TQWidget* parent, const char* name = 0);

Loading…
Cancel
Save