summaryrefslogtreecommitdiffstats
path: root/tdeparts
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 15:54:26 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 15:54:26 -0600
commit7427e438358d44c37e3c8b0a9cfbb225ffd60e79 (patch)
treed977f1d23d324f23aadee0ad50acb94d7436ba80 /tdeparts
parent72eecb041bf15bf64b748fc062d55f6ec860ac60 (diff)
downloadtdelibs-7427e438358d44c37e3c8b0a9cfbb225ffd60e79.tar.gz
tdelibs-7427e438358d44c37e3c8b0a9cfbb225ffd60e79.zip
Rename KHTML and kiobuffer
Diffstat (limited to 'tdeparts')
-rw-r--r--tdeparts/COMMENTS4
-rw-r--r--tdeparts/browserextension.h16
-rw-r--r--tdeparts/browserrun.cpp4
-rw-r--r--tdeparts/browserrun.h2
-rw-r--r--tdeparts/browserview.desktop2
5 files changed, 14 insertions, 14 deletions
diff --git a/tdeparts/COMMENTS b/tdeparts/COMMENTS
index 32f0be1d9..7d17ebdc0 100644
--- a/tdeparts/COMMENTS
+++ b/tdeparts/COMMENTS
@@ -391,7 +391,7 @@ KOfficeMainWindow (a tdeparts aware shell)
|
|- KReportGeneratorView/Part (a koffice component)
|
- |- KHTMLBrowserView/Part (something like konqui, this is a kpart)
+ |- TDEHTMLBrowserView/Part (something like konqui, this is a kpart)
Imagine all are added to one KPartManager.
Now the user clicks on the report generator and gets the
@@ -487,7 +487,7 @@ KOfficeMainWindow (a tdeparts aware shell)
|
|- KReportGeneratorView/Part (a koffice component)
|
- |- KHTMLBrowserView/Part (something like konqui, this is a kpart)
+ |- TDEHTMLBrowserView/Part (something like konqui, this is a kpart)
The report generator does not want GUI merging of its HTML browser. But it wants to offer an action
called "HTMLSettings" to allow choosing the default font of the HTML Widget. Obviously this action
diff --git a/tdeparts/browserextension.h b/tdeparts/browserextension.h
index 8d3a109ff..8dcbe68f7 100644
--- a/tdeparts/browserextension.h
+++ b/tdeparts/browserextension.h
@@ -65,7 +65,7 @@ struct KPARTS_EXPORT URLArgs
/**
* This buffer can be used by the part to save and restore its contents.
- * See KHTMLPart for instance.
+ * See TDEHTMLPart for instance.
*/
TQStringList docState;
@@ -89,26 +89,26 @@ struct KPARTS_EXPORT URLArgs
TQString serviceType;
/**
- * KHTML-specific field, contents of the HTTP POST data.
+ * TDEHTML-specific field, contents of the HTTP POST data.
*/
TQByteArray postData;
/**
- * KHTML-specific field, header defining the type of the POST data.
+ * TDEHTML-specific field, header defining the type of the POST data.
*/
void setContentType( const TQString & contentType );
/**
- * KHTML-specific field, header defining the type of the POST data.
+ * TDEHTML-specific field, header defining the type of the POST data.
*/
TQString contentType() const;
/**
- * KHTML-specific field, whether to do a POST instead of a GET,
+ * TDEHTML-specific field, whether to do a POST instead of a GET,
* for the next openURL.
*/
void setDoPost( bool enable );
/**
- * KHTML-specific field, whether to do a POST instead of a GET,
+ * TDEHTML-specific field, whether to do a POST instead of a GET,
* for the next openURL.
*/
bool doPost() const;
@@ -134,7 +134,7 @@ struct KPARTS_EXPORT URLArgs
TQMap<TQString, TQString> &metaData();
/**
- * The frame in which to open the URL. KHTML/Konqueror-specific.
+ * The frame in which to open the URL. TDEHTML/Konqueror-specific.
*/
TQString frameName;
@@ -719,7 +719,7 @@ private:
/**
* An extension class for container parts, i.e. parts that contain
* other parts.
- * For instance a KHTMLPart hosts one part per frame.
+ * For instance a TDEHTMLPart hosts one part per frame.
*/
class KPARTS_EXPORT BrowserHostExtension : public TQObject
{
diff --git a/tdeparts/browserrun.cpp b/tdeparts/browserrun.cpp
index f0951b382..96de9f904 100644
--- a/tdeparts/browserrun.cpp
+++ b/tdeparts/browserrun.cpp
@@ -356,7 +356,7 @@ BrowserRun::AskSaveResult BrowserRun::askEmbedOrSave( const KURL & url, const TQ
// SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC SYNC
}
-// Default implementation, overridden in KHTMLRun
+// Default implementation, overridden in TDEHTMLRun
void BrowserRun::save( const KURL & url, const TQString & suggestedFilename )
{
simpleSave( url, suggestedFilename, m_window );
@@ -461,7 +461,7 @@ void BrowserRun::handleError( TDEIO::Job * job )
void BrowserRun::redirectToError( int error, const TQString& errorText )
{
/**
- * To display this error in KHTMLPart instead of inside a dialog box,
+ * To display this error in TDEHTMLPart instead of inside a dialog box,
* we tell konq that the mimetype is text/html, and we redirect to
* an error:/ URL that sends the info to tdehtml.
*
diff --git a/tdeparts/browserrun.h b/tdeparts/browserrun.h
index edd46d40d..f84e088b3 100644
--- a/tdeparts/browserrun.h
+++ b/tdeparts/browserrun.h
@@ -123,7 +123,7 @@ namespace KParts {
*/
static AskSaveResult askEmbedOrSave( const KURL & url, const TQString& mimeType, const TQString & suggestedFilename = TQString::null, int flags = 0 );
- // virtual so that KHTML can implement differently (HTML cache)
+ // virtual so that TDEHTML can implement differently (HTML cache)
virtual void save( const KURL & url, const TQString & suggestedFilename );
// static so that it can be called from other classes
diff --git a/tdeparts/browserview.desktop b/tdeparts/browserview.desktop
index 42d6131ec..9c534c8f1 100644
--- a/tdeparts/browserview.desktop
+++ b/tdeparts/browserview.desktop
@@ -149,7 +149,7 @@ Type=bool
[PropertyDef::X-TDE-BrowserView-Built-Into]
Type=TQString
-# If the part has a plugin for KHTML Javascript's window.navigator.plugins
+# If the part has a plugin for TDEHTML Javascript's window.navigator.plugins
# array, it should create a plugin info file and set this property to the
# file path here. The path should be relative to TDE's data dir
# ($TDEDIR/share/apps)