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"
/*
* 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'.
*
* The dialog will by default be modeless, unless you set 'modal' to
* 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)
: TQDialog(tqparent, name, modal, fl),
: TQDialog(parent, name, modal, fl),
m_bookmarks(bms)
{
if ( !name )

@ -38,7 +38,7 @@ class BookmarksDlg : public TQDialog
TQ_OBJECT
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);
~BookmarksDlg();

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

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

Loading…
Cancel
Save