diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-11-07 22:30:02 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-11-07 22:30:02 -0600 |
commit | 6c097e6ff1c26c8c0e0fe0d8be2442d72a16fd70 (patch) | |
tree | c6627fbf229a57adb1235bf2e271756fd696b678 /tdeio | |
parent | d89a7e4c97333186cad06920762e91e49303cb94 (diff) | |
download | tdelibs-6c097e6ff1c26c8c0e0fe0d8be2442d72a16fd70.tar.gz tdelibs-6c097e6ff1c26c8c0e0fe0d8be2442d72a16fd70.zip |
Read from X-DocPath only
Diffstat (limited to 'tdeio')
-rw-r--r-- | tdeio/application.desktop | 2 | ||||
-rw-r--r-- | tdeio/tdeio/kprotocolinfo.h | 2 | ||||
-rw-r--r-- | tdeio/tests/tdesycocatest.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tdeio/application.desktop b/tdeio/application.desktop index d45e49578..014bc56c3 100644 --- a/tdeio/application.desktop +++ b/tdeio/application.desktop @@ -89,7 +89,7 @@ Name[zu]=Umyaleli [PropertyDef::NoDisplay] Type=bool -[PropertyDef::DocPath] +[PropertyDef::X-DocPath] Type=TQString [PropertyDef::X-TDE-SubstituteUID] diff --git a/tdeio/tdeio/kprotocolinfo.h b/tdeio/tdeio/kprotocolinfo.h index 592978e78..3cf142b69 100644 --- a/tdeio/tdeio/kprotocolinfo.h +++ b/tdeio/tdeio/kprotocolinfo.h @@ -498,7 +498,7 @@ public: /** * Returns the documentation path for the specified protocol. * - * This corresponds to the "DocPath=" field in the protocol description file. + * This corresponds to the "X-DocPath=" field in the protocol description file. * * @param protocol the protocol to check * @return the docpath of the protocol, or null if unknown diff --git a/tdeio/tests/tdesycocatest.cpp b/tdeio/tests/tdesycocatest.cpp index 719d90da8..67b6b55ba 100644 --- a/tdeio/tests/tdesycocatest.cpp +++ b/tdeio/tests/tdesycocatest.cpp @@ -129,7 +129,7 @@ int main(int argc, char *argv[]) { debug("Found it !"); debug(TQString("Comment is %1").arg(se->comment())); - TQVariant qv = se->property("DocPath"); + TQVariant qv = se->property("X-DocPath"); debug(TQString("Property type is %1").arg(qv.typeName())); debug(TQString("Property value is %1").arg(qv.toString())); } |