]> Shamusworld >> Repos - architektonas/blobdiff - src/base/script.cpp
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / base / script.cpp
index 5cb583a5c4287e5e7cbec321c93faf4c6c4b69bd..13381f8b60ea46ae27b30af1c66b7208e6347785 100644 (file)
 /**
  * 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;
 }