summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 21:03:04 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 21:03:04 -0600
commit48d026a1747f74cfbda29cfc573536dd1444dc69 (patch)
tree25960c104014affe59d9d75338503f48e43dd175
parent4df2d2fa4e70ab5d39a227c13a7170210a8287bd (diff)
downloadtdeartwork-48d026a1747f74cfbda29cfc573536dd1444dc69.tar.gz
tdeartwork-48d026a1747f74cfbda29cfc573536dd1444dc69.zip
Rename kiobuffer and KHTML
m---------cmake0
-rw-r--r--styles/dotnet/dotnet.cpp8
-rw-r--r--styles/dotnet/dotnet.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/cmake b/cmake
-Subproject 9a217903f9fa35ca12213a6e9ee3d2cb87d1131
+Subproject 274366fb8b90704586d7beef216b765cc0688b0
diff --git a/styles/dotnet/dotnet.cpp b/styles/dotnet/dotnet.cpp
index 49e51e39..d5c0f437 100644
--- a/styles/dotnet/dotnet.cpp
+++ b/styles/dotnet/dotnet.cpp
@@ -100,9 +100,9 @@ dotNETstyle::~dotNETstyle()
{
}
-bool dotNETstyle::inheritsKHTML(const TQWidget* w) const
+bool dotNETstyle::inheritsTDEHTML(const TQWidget* w) const
{
- if (w->parentWidget(true) && w->parentWidget(true)->parentWidget(true) && w->parentWidget(true)->parentWidget(true)->parentWidget(true) && w->parentWidget(true)->parentWidget(true)->parentWidget(true)->inherits("KHTMLView")) {
+ if (w->parentWidget(true) && w->parentWidget(true)->parentWidget(true) && w->parentWidget(true)->parentWidget(true)->parentWidget(true) && w->parentWidget(true)->parentWidget(true)->parentWidget(true)->inherits("TDEHTMLView")) {
return true;
} else {
return false;
@@ -124,7 +124,7 @@ void dotNETstyle::polish(const TQStyleControlElementData &ceData, ControlElement
// to update the palette again.
// bool extraPalette = false;
- if (ceData.widgetObjectTypes.contains(TQCOMBOBOX_OBJECT_NAME_STRING) && !inheritsKHTML(widget)) {
+ if (ceData.widgetObjectTypes.contains(TQCOMBOBOX_OBJECT_NAME_STRING) && !inheritsTDEHTML(widget)) {
installObjectEventHandler(ceData, elementFlags, ptr, this);
updatePalette( (TQComboBox*) widget );
// extraPalette = true;
@@ -156,7 +156,7 @@ void dotNETstyle::unPolish(const TQStyleControlElementData &ceData, ControlEleme
if (ceData.widgetObjectTypes.contains(TQWIDGET_OBJECT_NAME_STRING)) {
TQWidget *widget = reinterpret_cast<TQWidget*>(ptr);
- if (ceData.widgetObjectTypes.contains(TQCOMBOBOX_OBJECT_NAME_STRING) && !inheritsKHTML(widget)) {
+ if (ceData.widgetObjectTypes.contains(TQCOMBOBOX_OBJECT_NAME_STRING) && !inheritsTDEHTML(widget)) {
removeObjectEventHandler(ceData, elementFlags, ptr, this);
}
}
diff --git a/styles/dotnet/dotnet.h b/styles/dotnet/dotnet.h
index fb02ef3f..416f20ae 100644
--- a/styles/dotnet/dotnet.h
+++ b/styles/dotnet/dotnet.h
@@ -41,7 +41,7 @@ public:
dotNETstyle();
virtual ~dotNETstyle();
- bool inheritsKHTML( const TQWidget* widget ) const;
+ bool inheritsTDEHTML( const TQWidget* widget ) const;
void polish( const TQStyleControlElementData &ceData, ControlElementFlags elementFlags, void * );
void unPolish( const TQStyleControlElementData &ceData, ControlElementFlags elementFlags, void * );