summaryrefslogtreecommitdiffstats
path: root/konqueror/konq_frame.h
diff options
context:
space:
mode:
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; }