summaryrefslogtreecommitdiffstats
path: root/quanta/project/uploadprofiles.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/project/uploadprofiles.cpp')
-rw-r--r--quanta/project/uploadprofiles.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/quanta/project/uploadprofiles.cpp b/quanta/project/uploadprofiles.cpp
index cb54c27f..779903ab 100644
--- a/quanta/project/uploadprofiles.cpp
+++ b/quanta/project/uploadprofiles.cpp
@@ -55,12 +55,12 @@ void UploadProfiles::readFromXML(const TQDomDocument &dom)
bool UploadProfiles::removeFromMapAndXML(const TQString &name)
{
- UploadProfiles::Iterator it = find(name);
+ UploadProfiles::Iterator it = tqfind(name);
if ( it == end() )
return false;
// ok now remove
TQDomElement el = (*it).domElement;
- el.parentNode().removeChild(el);
+ el.tqparentNode().removeChild(el);
erase(name);
return true;
}