diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:07:30 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-21 14:07:30 -0600 |
commit | 68b0d93f005081933603e1d07d6ebece55cf4502 (patch) | |
tree | 75b69804a6d7855f437992b56df438c1805a3e42 /src/entryview.cpp | |
parent | 26f93a7d9105483b49ae930545ddb2873156fa8e (diff) | |
download | tellico-68b0d93f005081933603e1d07d6ebece55cf4502.tar.gz tellico-68b0d93f005081933603e1d07d6ebece55cf4502.zip |
Rename obsolete tq methods to standard names
Diffstat (limited to 'src/entryview.cpp')
-rw-r--r-- | src/entryview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/entryview.cpp b/src/entryview.cpp index 2965405..3499adc 100644 --- a/src/entryview.cpp +++ b/src/entryview.cpp @@ -46,7 +46,7 @@ EntryView::EntryView(TQWidget* parent_, const char* name_) : KHTMLPart(parent_, setJavaEnabled(false); setMetaRefreshEnabled(false); setPluginsEnabled(false); - clear(); // needed for initial tqlayout + clear(); // needed for initial layout view()->setAcceptDrops(true); DropHandler* drophandler = new DropHandler(this); @@ -76,7 +76,7 @@ void EntryView::clear() { write(m_textToShow); } end(); - view()->tqlayout(); // I need this because some of the margins and widths may get messed up + view()->layout(); // I need this because some of the margins and widths may get messed up } void EntryView::showEntry(Data::EntryPtr entry_) { @@ -158,7 +158,7 @@ void EntryView::showEntry(Data::EntryPtr entry_) { write(html); end(); // not need anymore? - view()->tqlayout(); // I need this because some of the margins and widths may get messed up + view()->layout(); // I need this because some of the margins and widths may get messed up } void EntryView::showText(const TQString& text_) { |