rename the following methods:

tqparent parent
tqmask mask


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kbookreader@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
v3.5.13-sru
tpearson 13 years ago
parent 1c143fef35
commit b80425fab4

@ -28,16 +28,16 @@
#include "bookmarksdlg.h" #include "bookmarksdlg.h"
/* /*
* Constructs a BookmarksDlg as a child of 'tqparent', with the * Constructs a BookmarksDlg as a child of 'parent', with the
* name 'name' and widget flags set to 'f'. * name 'name' and widget flags set to 'f'.
* *
* The dialog will by default be modeless, unless you set 'modal' to * The dialog will by default be modeless, unless you set 'modal' to
* TRUE to construct a modal dialog. * TRUE to construct a modal dialog.
*/ */
BookmarksDlg::BookmarksDlg(const Bookmarks& bms, TQWidget* tqparent, BookmarksDlg::BookmarksDlg(const Bookmarks& bms, TQWidget* parent,
const char* name, bool modal, WFlags fl) const char* name, bool modal, WFlags fl)
: TQDialog(tqparent, name, modal, fl), : TQDialog(parent, name, modal, fl),
m_bookmarks(bms) m_bookmarks(bms)
{ {
if ( !name ) if ( !name )

@ -38,7 +38,7 @@ class BookmarksDlg : public TQDialog
TQ_OBJECT TQ_OBJECT
public: public:
BookmarksDlg(const Bookmarks& bms, TQWidget* tqparent = 0, BookmarksDlg(const Bookmarks& bms, TQWidget* parent = 0,
const char* name = 0, bool modal = FALSE, WFlags fl = 0); const char* name = 0, bool modal = FALSE, WFlags fl = 0);
~BookmarksDlg(); ~BookmarksDlg();

@ -37,8 +37,8 @@ class TQStringList;
class TQRect; class TQRect;
class TQPixmap; class TQPixmap;
BookWidget::BookWidget(TQWidget *tqparent, const char *name) BookWidget::BookWidget(TQWidget *parent, const char *name)
: TQWidget(tqparent, name), : TQWidget(parent, name),
m_modified(true), m_modified(true),
m_currentPage(0), m_currentPage(0),
m_left_margin(0), m_left_margin(0),

@ -44,7 +44,7 @@ class BookWidget : public TQWidget
public: public:
BookWidget(TQWidget *tqparent = 0, const char *name = 0); BookWidget(TQWidget *parent = 0, const char *name = 0);
~BookWidget(); ~BookWidget();
virtual void openURL(const KURL & url); virtual void openURL(const KURL & url);

Loading…
Cancel
Save