Remove spurious TQ_OBJECT instances

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@ -39,7 +39,7 @@ namespace Tellico {
*/ */
class Document : public TQObject { class Document : public TQObject {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
static Document* self() { if(!s_self) s_self = new Document(); return s_self; } 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 { class EntryGroup : public TQObject, public EntryVec {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
EntryGroup(const TQString& group, const TQString& field); EntryGroup(const TQString& group, const TQString& field);

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

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

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

@ -27,7 +27,7 @@ namespace Tellico {
*/ */
class EntryUpdater : public TQObject { class EntryUpdater : public TQObject {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
EntryUpdater(Data::CollPtr coll, Data::EntryVec entries, TQObject* parent); EntryUpdater(Data::CollPtr coll, Data::EntryVec entries, TQObject* parent);
EntryUpdater(const TQString& fetcher, 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 { class EntryView : public KHTMLPart {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
/** /**

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Loading…
Cancel
Save