diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | feaf6d62da1685a34fbc8c201f31da681f04e2a7 (patch) | |
tree | de2bad7247bd5f95ab845f8650a942a45248d30a /src/entryview.cpp | |
parent | 2595a15ebeb6fc46b7cb241d01ec0c2460ec2111 (diff) | |
download | tellico-feaf6d62da1685a34fbc8c201f31da681f04e2a7.tar.gz tellico-feaf6d62da1685a34fbc8c201f31da681f04e2a7.zip |
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...]
tqinvalidate[...]
tqparent[...]
tqmask[...]
tqlayout[...]
tqalignment[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/tellico@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/entryview.cpp')
-rw-r--r-- | src/entryview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/entryview.cpp b/src/entryview.cpp index 9019d18..37659d7 100644 --- a/src/entryview.cpp +++ b/src/entryview.cpp @@ -40,7 +40,7 @@ using Tellico::EntryView; -EntryView::EntryView(TQWidget* tqparent_, const char* name_) : KHTMLPart(tqparent_, name_), +EntryView::EntryView(TQWidget* parent_, const char* name_) : KHTMLPart(parent_, name_), m_entry(0), m_handler(0), m_run(0), m_tempFile(0), m_useGradientImages(true), m_checkCommonFile(true) { setJScriptEnabled(false); setJavaEnabled(false); @@ -266,7 +266,7 @@ void EntryView::slotRefresh() { // do some contortions in case the url is relative // need to interpret it relative to document URL instead of xslt file // the current node under the mouse vould be the text node inside -// the anchor node, so iterate up the tqparents +// the anchor node, so iterate up the parents void EntryView::slotOpenURL(const KURL& url_) { if(url_.protocol() == Latin1Literal("tc")) { // handle this internally |