summaryrefslogtreecommitdiffstats
path: root/konqueror/konq_frame.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 20:16:47 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-01-03 20:16:47 +0000
commit495d08bc2db58ee7fc4ea55a7158f2f61b82fc56 (patch)
treedaabcb652c07b9a17cad88ca50b63a2d91ead4a3 /konqueror/konq_frame.h
parent50001f1757f97510e80cb1990e2f2d5b00144c2a (diff)
downloadtdebase-495d08bc2db58ee7fc4ea55a7158f2f61b82fc56.tar.gz
tdebase-495d08bc2db58ee7fc4ea55a7158f2f61b82fc56.zip
Automated conversion for enhanced compatibility with TQt for Qt4 3.4.0 TP1
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1211357 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'konqueror/konq_frame.h')
-rw-r--r--konqueror/konq_frame.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/konqueror/konq_frame.h b/konqueror/konq_frame.h
index c695515e8..b07859ecf 100644
--- a/konqueror/konq_frame.h
+++ b/konqueror/konq_frame.h
@@ -59,7 +59,7 @@ namespace KParts
/**
* A CheckBox with a special paintEvent(). It looks like the
- * unchecked radiobutton in b2k style if unchecked and contains a little
+ * unchecked radiobutton in b2k style if unchecked and tqcontains a little
* anchor if checked.
*/
class KonqCheckBox : public QCheckBox
@@ -101,13 +101,13 @@ class KonqFrameStatusBar : public KStatusBar
/**
* Updates the active-view indicator and the statusbar color.
*/
- void updateActiveStatus();
+ void updateActivetqStatus();
public slots:
void slotConnectToNewView(KonqView *, KParts::ReadOnlyPart *oldOne,KParts::ReadOnlyPart *newOne);
void slotLoadingProgress( int percent );
void slotSpeedProgress( int bytesPerSecond );
- void slotDisplayStatusText(const TQString& text);
+ void slotDisplaytqStatusText(const TQString& text);
void slotClear();
void message ( const TQString & message );
@@ -141,7 +141,7 @@ class KonqFrameStatusBar : public KStatusBar
KonqFrame* m_pParentKonqFrame;
TQCheckBox *m_pLinkedViewCheckBox;
KProgress *m_progressBar;
- KSqueezedTextLabel *m_pStatusLabel;
+ KSqueezedTextLabel *m_ptqStatusLabel;
TQLabel* m_led;
TQString m_savedMessage;
};
@@ -190,10 +190,10 @@ protected:
* them on click at the statusbar.
*
* KonqFrame makes the difference between built-in views and remote ones.
- * We create a layout in it (with the KonqFrameStatusBar as top item in the layout)
- * For builtin views we have the view as direct child widget of the layout
+ * We create a tqlayout in it (with the KonqFrameStatusBar as top item in the tqlayout)
+ * For builtin views we have the view as direct child widget of the tqlayout
* For remote views we have an OPFrame, having the view attached, as child
- * widget of the layout
+ * widget of the tqlayout
*/
class KonqFrame : public TQWidget, public KonqFrameBase
@@ -218,12 +218,12 @@ public:
virtual bool eventFilter(TQObject*obj,TQEvent *ev);
/**
- * Inserts the part's widget and the statusbar into the layout
+ * Inserts the part's widget and the statusbar into the tqlayout
*/
void attachInternal();
/**
- * Inserts a widget at the top of the part's widget, in the layout
+ * Inserts a widget at the top of the part's widget, in the tqlayout
* (used for the find functionality)
*/
void insertTopWidget( TQWidget * widget );
@@ -257,7 +257,7 @@ public:
virtual TQWidget* widget() { return this; }
virtual TQCString frameType() { return TQCString("View"); }
- TQVBoxLayout *layout()const { return m_pLayout; }
+ TQVBoxLayout *tqlayout()const { return m_pLayout; }
KonqFrameStatusBar *statusbar() const { return m_pStatusBar; }