From c952eb36d076b907e44c9a0317c6eba4434604c2 Mon Sep 17 00:00:00 2001
From: Michele Calgaro <michele.calgaro@yahoo.it>
Date: Fri, 26 Jun 2026 11:41:01 +0900
Subject: Remove usage of staticQString for specific case.

It was used incorrectly so I don't see a need for it at the specific point.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
---
 tdeio/tdeio/ksambashare.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tdeio/tdeio/ksambashare.cpp b/tdeio/tdeio/ksambashare.cpp
index fbc3c2e6e..b39aabb22 100644
--- a/tdeio/tdeio/ksambashare.cpp
+++ b/tdeio/tdeio/ksambashare.cpp
@@ -151,7 +151,7 @@ bool KSambaSharePrivate::readSmbConf() {
       TQString name = completeLine.left(i).stripWhiteSpace().lower();
       TQString value = completeLine.mid(i+1).stripWhiteSpace();
 
-      if (name == TDEGlobal::staticQString("path")) {
+      if (name == "path") {
         // Handle quotation marks
         if ( value[0] == '"' )
           value.remove(0,1);
-- 
cgit v1.2.3

