diff options
Diffstat (limited to 'src/formatimporter.cpp')
-rw-r--r-- | src/formatimporter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/formatimporter.cpp b/src/formatimporter.cpp index a0a24ad..00045f4 100644 --- a/src/formatimporter.cpp +++ b/src/formatimporter.cpp @@ -188,7 +188,7 @@ TQDomElement FormatImporter::importBasket(const TQString &folderName) TQDomElement properties = XMLWork::getElement(docElem, "properties"); TQDomElement background = XMLWork::getElement(properties, "background"); TQColor backgroundColor = TQColor(background.attribute("color")); - if (backgroundColor.isValid() && (backgroundColor != KGlobalSettings::baseColor())) { // Use the default color if it was already that color: + if (backgroundColor.isValid() && (backgroundColor != TDEGlobalSettings::baseColor())) { // Use the default color if it was already that color: TQDomElement appearance = document->createElement("appearance"); appearance.setAttribute("backgroundColor", backgroundColor.name()); properties.appendChild(appearance); |