X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fbase%2Fscript.cpp;fp=src%2Fbase%2Fscript.cpp;h=13381f8b60ea46ae27b30af1c66b7208e6347785;hb=16354e0421b316a62c6b9f7b0b4f3b8cf6f06284;hp=5cb583a5c4287e5e7cbec321c93faf4c6c4b69bd;hpb=3239ef39dcee08fa6e8cd68cdf2727fc68cc7a8c;p=architektonas diff --git a/src/base/script.cpp b/src/base/script.cpp index 5cb583a..13381f8 100644 --- a/src/base/script.cpp +++ b/src/base/script.cpp @@ -19,19 +19,19 @@ /** * Constructor. */ -RS_Script::RS_Script(const QString & name, const QString & /*path*/) +Script::Script(const QString & name, const QString & /*path*/) { this->name = name; } /** @return the name of this script. */ -QString RS_Script::getName() const +QString Script::getName() const { return name; } /** @return the full path and file name of this script. */ -QString RS_Script::getPath() const +QString Script::getPath() const { return path; }