summaryrefslogtreecommitdiff
path: root/sw/inc/rdfhelper.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2017-07-31 16:21:13 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2017-07-31 19:52:04 +0200
commitc2bf0d06fa3c634024db816a93e53e904f4eb2d1 (patch)
tree27161368545ad2417db538b1760f01af9bb74e92 /sw/inc/rdfhelper.hxx
parent4a4412f70cd07baa8e67dd92dc1c403455bfe3a4 (diff)
starmath, sw: fix inconsistent param naming in interface/implementation
At least some of them. Change-Id: I69d4b0b000efec863bf66e9719b57e881ff23689 Reviewed-on: https://gerrit.libreoffice.org/40596 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'sw/inc/rdfhelper.hxx')
-rw-r--r--sw/inc/rdfhelper.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/rdfhelper.hxx b/sw/inc/rdfhelper.hxx
index bb644964089e..f89d470300ed 100644
--- a/sw/inc/rdfhelper.hxx
+++ b/sw/inc/rdfhelper.hxx
@@ -22,8 +22,8 @@ class SwTextNode;
class SW_DLLPUBLIC SwRDFHelper
{
public:
- /// Gets all (rTextNode, key, value) statements in RDF graphs of type rType.
- static std::map<OUString, OUString> getTextNodeStatements(const OUString& rType, const SwTextNode& rTextNode);
+ /// Gets all (rNode, key, value) statements in RDF graphs of type rType.
+ static std::map<OUString, OUString> getTextNodeStatements(const OUString& rType, const SwTextNode& rNode);
/// Add an (rTextNode, key, value) statement in the graph of type rType -- or if it does not exist, create a graph at rPath first.
static void addTextNodeStatement(const OUString& rType, const OUString& rPath, SwTextNode& rTextNode, const OUString& rKey, const OUString& rValue);
};