diff options
| author | 2021-06-22 21:34:19 +0200 | |
|---|---|---|
| committer | 2022-04-13 15:40:42 +0200 | |
| commit | 70c279ab847883046ef0a951e4d2ccbf6170d19a (patch) | |
| tree | 28bc40fdf84d2b5c3ff032de84ef6a55ef67ec01 /node | |
| parent | 2f67beb05264e0f74250852efb3133e074309f71 (diff) | |
| download | OneRoll-70c279ab847883046ef0a951e4d2ccbf6170d19a.tar.gz OneRoll-70c279ab847883046ef0a951e4d2ccbf6170d19a.zip | |
rename some member in dicealias
Diffstat (limited to 'node')
| -rw-r--r-- | node/listaliasnode.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/node/listaliasnode.cpp b/node/listaliasnode.cpp index a8e4125..c3f6d31 100644 --- a/node/listaliasnode.cpp +++ b/node/listaliasnode.cpp @@ -48,7 +48,7 @@ QString ListAliasNode::buildList() const QString result(QObject::tr("List of Alias:\n")); for(auto& key : m_aliasList) { - result+= QString("%1 : %2 # %3\n").arg(key->getCommand(), key->getValue(), key->getComment()); + result+= QString("%1 : %2 # %3\n").arg(key->pattern(), key->command(), key->comment()); } return result; } @@ -57,7 +57,7 @@ QString ListAliasNode::toString(bool wl) const QStringList resultList; for(auto& key : m_aliasList) { - resultList << "{" << key->getCommand() << key->getValue() << "}"; + resultList << "{" << key->pattern() << key->command() << "}"; } if(wl) |