diff options
Diffstat (limited to 'src/document/io')
-rw-r--r-- | src/document/io/CsoundExporter.cpp | 4 | ||||
-rw-r--r-- | src/document/io/CsoundExporter.h | 2 | ||||
-rw-r--r-- | src/document/io/HydrogenLoader.cpp | 4 | ||||
-rw-r--r-- | src/document/io/HydrogenLoader.h | 2 | ||||
-rw-r--r-- | src/document/io/LilyPondExporter.cpp | 12 | ||||
-rw-r--r-- | src/document/io/LilyPondExporter.h | 4 | ||||
-rw-r--r-- | src/document/io/MupExporter.cpp | 4 | ||||
-rw-r--r-- | src/document/io/MupExporter.h | 2 | ||||
-rw-r--r-- | src/document/io/MusicXmlExporter.cpp | 4 | ||||
-rw-r--r-- | src/document/io/MusicXmlExporter.h | 2 | ||||
-rw-r--r-- | src/document/io/RG21Loader.cpp | 4 | ||||
-rw-r--r-- | src/document/io/RG21Loader.h | 2 |
12 files changed, 23 insertions, 23 deletions
diff --git a/src/document/io/CsoundExporter.cpp b/src/document/io/CsoundExporter.cpp index 9316de6..70f1e51 100644 --- a/src/document/io/CsoundExporter.cpp +++ b/src/document/io/CsoundExporter.cpp @@ -40,10 +40,10 @@ namespace Rosegarden { -CsoundExporter::CsoundExporter(TQObject *tqparent, +CsoundExporter::CsoundExporter(TQObject *parent, Composition *composition, std::string fileName) : - ProgressReporter(tqparent, "csoundExporter"), + ProgressReporter(parent, "csoundExporter"), m_composition(composition), m_fileName(fileName) { diff --git a/src/document/io/CsoundExporter.h b/src/document/io/CsoundExporter.h index a2476e0..f179fb6 100644 --- a/src/document/io/CsoundExporter.h +++ b/src/document/io/CsoundExporter.h @@ -46,7 +46,7 @@ class Composition; class CsoundExporter : public ProgressReporter { public: - CsoundExporter(TQObject *tqparent, Composition *, std::string fileName); + CsoundExporter(TQObject *parent, Composition *, std::string fileName); ~CsoundExporter(); bool write(); diff --git a/src/document/io/HydrogenLoader.cpp b/src/document/io/HydrogenLoader.cpp index 4a4876c..984527d 100644 --- a/src/document/io/HydrogenLoader.cpp +++ b/src/document/io/HydrogenLoader.cpp @@ -41,8 +41,8 @@ namespace Rosegarden { HydrogenLoader::HydrogenLoader(Studio *studio, - TQObject *tqparent, const char *name): - ProgressReporter(tqparent, name), + TQObject *parent, const char *name): + ProgressReporter(parent, name), m_studio(studio) {} diff --git a/src/document/io/HydrogenLoader.h b/src/document/io/HydrogenLoader.h index e4975ad..bd3cffb 100644 --- a/src/document/io/HydrogenLoader.h +++ b/src/document/io/HydrogenLoader.h @@ -54,7 +54,7 @@ class HydrogenLoader : public ProgressReporter { public: HydrogenLoader(Studio *, - TQObject *tqparent = 0, const char *name = 0); + TQObject *parent = 0, const char *name = 0); /** * Load and parse the Hydrogen file \a fileName, and write it into the diff --git a/src/document/io/LilyPondExporter.cpp b/src/document/io/LilyPondExporter.cpp index b445a41..f2d6008 100644 --- a/src/document/io/LilyPondExporter.cpp +++ b/src/document/io/LilyPondExporter.cpp @@ -85,26 +85,26 @@ using namespace BaseProperties; const PropertyName LilyPondExporter::SKIP_PROPERTY = "LilyPondExportSkipThisEvent"; -LilyPondExporter::LilyPondExporter(RosegardenGUIApp *tqparent, +LilyPondExporter::LilyPondExporter(RosegardenGUIApp *parent, RosegardenGUIDoc *doc, std::string fileName) : - ProgressReporter((TQObject *)tqparent, "lilypondExporter"), + ProgressReporter((TQObject *)parent, "lilypondExporter"), m_doc(doc), m_fileName(fileName), m_lastClefFound(Clef::Treble) { m_composition = &m_doc->getComposition(); m_studio = &m_doc->getStudio(); - m_view = ((RosegardenGUIApp *)tqparent)->getView(); + m_view = ((RosegardenGUIApp *)parent)->getView(); m_notationView = NULL; readConfigVariables(); } -LilyPondExporter::LilyPondExporter(NotationView *tqparent, +LilyPondExporter::LilyPondExporter(NotationView *parent, RosegardenGUIDoc *doc, std::string fileName) : - ProgressReporter((TQObject *)tqparent, "lilypondExporter"), + ProgressReporter((TQObject *)parent, "lilypondExporter"), m_doc(doc), m_fileName(fileName), m_lastClefFound(Clef::Treble) @@ -113,7 +113,7 @@ LilyPondExporter::LilyPondExporter(NotationView *tqparent, m_composition = &m_doc->getComposition(); m_studio = &m_doc->getStudio(); m_view = NULL; - m_notationView = ((NotationView *)tqparent); + m_notationView = ((NotationView *)parent); readConfigVariables(); } diff --git a/src/document/io/LilyPondExporter.h b/src/document/io/LilyPondExporter.h index 5656f77..6ba3a21 100644 --- a/src/document/io/LilyPondExporter.h +++ b/src/document/io/LilyPondExporter.h @@ -87,8 +87,8 @@ public: typedef std::multiset<Event*, Event::EventEndCmp> eventendlist; public: - LilyPondExporter(RosegardenGUIApp *tqparent, RosegardenGUIDoc *, std::string fileName); - LilyPondExporter(NotationView *tqparent, RosegardenGUIDoc *, std::string fileName); + LilyPondExporter(RosegardenGUIApp *parent, RosegardenGUIDoc *, std::string fileName); + LilyPondExporter(NotationView *parent, RosegardenGUIDoc *, std::string fileName); ~LilyPondExporter(); bool write(); diff --git a/src/document/io/MupExporter.cpp b/src/document/io/MupExporter.cpp index f17a8a3..6207512 100644 --- a/src/document/io/MupExporter.cpp +++ b/src/document/io/MupExporter.cpp @@ -45,10 +45,10 @@ namespace Rosegarden { using namespace BaseProperties; -MupExporter::MupExporter(TQObject *tqparent, +MupExporter::MupExporter(TQObject *parent, Composition *composition, string fileName) : - ProgressReporter(tqparent, "mupExporter"), + ProgressReporter(parent, "mupExporter"), m_composition(composition), m_fileName(fileName) { diff --git a/src/document/io/MupExporter.h b/src/document/io/MupExporter.h index 781080d..1ba8d5d 100644 --- a/src/document/io/MupExporter.h +++ b/src/document/io/MupExporter.h @@ -55,7 +55,7 @@ class Composition; class MupExporter : public ProgressReporter { public: - MupExporter(TQObject *tqparent, Composition *, std::string fileName); + MupExporter(TQObject *parent, Composition *, std::string fileName); ~MupExporter(); bool write(); diff --git a/src/document/io/MusicXmlExporter.cpp b/src/document/io/MusicXmlExporter.cpp index febd911..365a792 100644 --- a/src/document/io/MusicXmlExporter.cpp +++ b/src/document/io/MusicXmlExporter.cpp @@ -46,10 +46,10 @@ namespace Rosegarden using namespace BaseProperties; -MusicXmlExporter::MusicXmlExporter(TQObject *tqparent, +MusicXmlExporter::MusicXmlExporter(TQObject *parent, RosegardenGUIDoc *doc, std::string fileName) : - ProgressReporter(tqparent, "musicXmlExporter"), + ProgressReporter(parent, "musicXmlExporter"), m_doc(doc), m_fileName(fileName) { diff --git a/src/document/io/MusicXmlExporter.h b/src/document/io/MusicXmlExporter.h index f2da943..7d8287d 100644 --- a/src/document/io/MusicXmlExporter.h +++ b/src/document/io/MusicXmlExporter.h @@ -60,7 +60,7 @@ public: typedef std::multiset<Event*, Event::EventCmp> eventstartlist; typedef std::multiset<Event*, Event::EventEndCmp> eventendlist; public: - MusicXmlExporter(TQObject *tqparent, RosegardenGUIDoc *, std::string fileName); + MusicXmlExporter(TQObject *parent, RosegardenGUIDoc *, std::string fileName); ~MusicXmlExporter(); bool write(); diff --git a/src/document/io/RG21Loader.cpp b/src/document/io/RG21Loader.cpp index 78950de..c36a228 100644 --- a/src/document/io/RG21Loader.cpp +++ b/src/document/io/RG21Loader.cpp @@ -58,8 +58,8 @@ using namespace Accidentals; using namespace Marks; RG21Loader::RG21Loader(Studio *studio, - TQObject *tqparent, const char* name) - : ProgressReporter(tqparent, name), + TQObject *parent, const char* name) + : ProgressReporter(parent, name), m_stream(0), m_studio(studio), m_composition(0), diff --git a/src/document/io/RG21Loader.h b/src/document/io/RG21Loader.h index 51e663b..236d6c6 100644 --- a/src/document/io/RG21Loader.h +++ b/src/document/io/RG21Loader.h @@ -58,7 +58,7 @@ class RG21Loader : public ProgressReporter { public: RG21Loader(Studio *, - TQObject *tqparent = 0, const char *name = 0); + TQObject *parent = 0, const char *name = 0); ~RG21Loader(); /** |