diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 21:04:37 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 21:04:37 -0600 |
commit | 642c256d47aef772f1ca802894dcced70404a81b (patch) | |
tree | 89a9acae31538c0adf6b989b9d17415303197855 /kbugbuster | |
parent | a51e36dd01b6fdd51475450fa909e0e0940ab56c (diff) | |
download | tdesdk-642c256d47aef772f1ca802894dcced70404a81b.tar.gz tdesdk-642c256d47aef772f1ca802894dcced70404a81b.zip |
Rename kiobuffer and KHTML
Diffstat (limited to 'kbugbuster')
-rw-r--r-- | kbugbuster/Makefile.am | 2 | ||||
-rw-r--r-- | kbugbuster/gui/README | 2 | ||||
-rw-r--r-- | kbugbuster/gui/cwbugdetails.cpp | 2 | ||||
-rw-r--r-- | kbugbuster/gui/cwbugdetails.h | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/kbugbuster/Makefile.am b/kbugbuster/Makefile.am index 727c0b69..f1e6939d 100644 --- a/kbugbuster/Makefile.am +++ b/kbugbuster/Makefile.am @@ -11,7 +11,7 @@ bin_PROGRAMS = kbugbuster kbugbuster_SOURCES = main.cpp kbugbuster_LDADD = -ltdeutils gui/libkbbmainwindow.la \ - backend/libkbbbackend.la $(LIB_KHTML) $(LIB_KIO) -ltdefx $(LIB_KUTILS) + backend/libkbbbackend.la $(LIB_TDEHTML) $(LIB_KIO) -ltdefx $(LIB_KUTILS) kbugbuster_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor $(LIB_KUTILS) xdg_apps_DATA = kbugbuster.desktop diff --git a/kbugbuster/gui/README b/kbugbuster/gui/README index 54e5fa67..6f28720f 100644 --- a/kbugbuster/gui/README +++ b/kbugbuster/gui/README @@ -15,7 +15,7 @@ Widgets, including a Qt designer .ui file: centralwidget* The main widget of kbbmainwindow cwbuglistcontainer* The widget containing the bug list (top of central widget) cwbugdetailscontainer* The widget containing the bug details + the buttons in its right (bottom of central widget). -cwbugdetails* The widget showing details of a bug report, using KHTMLPart +cwbugdetails* The widget showing details of a bug report, using TDEHTMLPart cwsearchwidget* A future search widget on the left of the bug details. Same functionality is in the menus, this would take too much screen space IMHO (DF) preferencesdialog* Preferences dialog diff --git a/kbugbuster/gui/cwbugdetails.cpp b/kbugbuster/gui/cwbugdetails.cpp index 0ab78ff2..1c6fa6c5 100644 --- a/kbugbuster/gui/cwbugdetails.cpp +++ b/kbugbuster/gui/cwbugdetails.cpp @@ -40,7 +40,7 @@ CWBugDetails::CWBugDetails( TQWidget *parent , const char * name ) { TQBoxLayout *topLayout = new TQVBoxLayout( this ); - m_bugDesc = new KHTMLPart( this, "m_bugDesc" ); + m_bugDesc = new TDEHTMLPart( this, "m_bugDesc" ); connect( m_bugDesc->browserExtension(), TQT_SIGNAL( openURLRequest( const KURL &, const KParts::URLArgs & ) ), this, TQT_SLOT( handleOpenURLRequest( const KURL &, const KParts::URLArgs & ) ) ); diff --git a/kbugbuster/gui/cwbugdetails.h b/kbugbuster/gui/cwbugdetails.h index 5067b953..e6388f2f 100644 --- a/kbugbuster/gui/cwbugdetails.h +++ b/kbugbuster/gui/cwbugdetails.h @@ -24,7 +24,7 @@ #include <tdeparts/browserextension.h> -class KHTMLPart; +class TDEHTMLPart; namespace KBugBusterMainWindow { @@ -53,7 +53,7 @@ class CWBugDetails : public TQWidget TQString textBugDetailsAttribute( const TQString &value, const TQString &name ); - KHTMLPart *m_bugDesc; + TDEHTMLPart *m_bugDesc; TQString mSource; }; |