Sophie

Sophie

distrib > Fedora > 13 > i386 > media > updates-src > by-pkgid > 0e565b7abda4a24d9aff6d2f6080ef1d > files > 6

mscore-0.9.6.3-1.fc13.src.rpm

diff -rupN mscore-0.9.6.old/mscore/mscore/mscore.cpp mscore-0.9.6/mscore/mscore/mscore.cpp
--- mscore-0.9.6.old/mscore/mscore/mscore.cpp	2010-06-07 17:26:55.000000000 -0400
+++ mscore-0.9.6/mscore/mscore/mscore.cpp	2010-06-12 00:12:36.000000000 -0400
@@ -1868,17 +1868,17 @@ int main(int argc, char* av[])
       //  load internal fonts
       //
 
-      if (-1 == QFontDatabase::addApplicationFont(":/fonts/mscore-20.ttf")) {
+      if (-1 == QFontDatabase::addApplicationFont(INSTPREFIX "/share/fonts/mscore/mscore-20.ttf")) {
             fprintf(stderr, "Mscore: fatal error: cannot load internal font\n");
             if (!debugMode)
                   exit(-1);
             }
-      if (-1 == QFontDatabase::addApplicationFont(":/fonts/mscore1-20.ttf")) {
+      if (-1 == QFontDatabase::addApplicationFont(INSTPREFIX "/share/fonts/mscore/mscore1-20.ttf")) {
             fprintf(stderr, "Mscore: fatal error: cannot load internal font\n");
             if (!debugMode)
                   exit(-1);
             }
-      if (-1 == QFontDatabase::addApplicationFont(":/fonts/MuseJazz.ttf")) {
+      if (-1 == QFontDatabase::addApplicationFont(INSTPREFIX "/share/fonts/mscore/mscore-MuseJazz.ttf")) {
             fprintf(stderr, "Mscore: fatal error: cannot load internal font MuseJazz.ttf\n");
             if (!debugMode)
                   exit(-1);
diff -rupN mscore-0.9.6.old/mscore/mscore/mscore.qrc mscore-0.9.6/mscore/mscore/mscore.qrc
--- mscore-0.9.6.old/mscore/mscore/mscore.qrc	2010-06-07 17:26:55.000000000 -0400
+++ mscore-0.9.6/mscore/mscore/mscore.qrc	2010-06-12 00:13:41.000000000 -0400
@@ -5,11 +5,11 @@
       <file>data/previous.png</file>
       <file>data/next.png</file>
       <file>data/repeat.svg</file>
-      <file>data/paper1.png</file>
-      <file>data/paper2.png</file>
-      <file>data/paper3.png</file>
-      <file>data/paper4.png</file>
-      <file>data/paper5.png</file>
+
+
+
+
+
       <file>data/text_bold.svg</file>
       <file>data/text_italic.svg</file>
       <file>data/text_left.svg</file>
@@ -33,12 +33,12 @@
       <file>data/viewmag.xpm</file>
       <file>data/subscript.svg</file>
       <file>data/superscript.svg</file>
-      <file>fonts/mscore-20.ttf</file>
-      <file>fonts/mscore1-20.ttf</file>
-      <file>fonts/MuseJazz.ttf</file>
-      <file alias="data/instruments.xml">../share/templates/instruments.xml</file>
+
+
+
+
       <file>data/splash.jpg</file>
-      <file alias="data/demo.mscx">../demos/promenade.mscx</file>
+
       <file>data/speaker.svg</file>
       <file>data/midiin.svg</file>
       <file>data/undo.svg</file>
diff -rupN mscore-0.9.6.old/mscore/mscore/preferences.cpp mscore-0.9.6/mscore/mscore/preferences.cpp
--- mscore-0.9.6.old/mscore/mscore/preferences.cpp	2010-06-07 17:26:55.000000000 -0400
+++ mscore-0.9.6/mscore/mscore/preferences.cpp	2010-06-12 00:17:10.000000000 -0400
@@ -115,7 +115,7 @@ void Preferences::init()
       bgUseColor         = true;
       fgUseColor         = false;
       bgWallpaper        = QString();
-      fgWallpaper        = ":/data/paper5.png";
+      fgWallpaper        = INSTPREFIX "/share/" INSTALL_NAME "wallpaper/paper5.png";
       fgColor.setRgb(255, 255, 255);
       bgColor.setRgb(0x76, 0x76, 0x6e);
 
@@ -163,7 +163,7 @@ void Preferences::init()
       layoutBreakColor         = Qt::green;
       antialiasedDrawing       = true;
       sessionStart             = SCORE_SESSION;
-      startScore               = ":/data/demo.mscx";
+      startScore               = INSTPREFIX "/share/" INSTALL_NAME "demos/promenade.mscx";
       workingDirectory         = QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation);
       showSplashScreen         = true;
 
@@ -183,7 +183,7 @@ void Preferences::init()
 
       midiExpandRepeats        = true;
       playRepeats              = true;
-      instrumentList           = ":/data/instruments.xml";
+      instrumentList           = INSTPREFIX "/share/" INSTALL_NAME "templates/instruments.xml";
 
       alternateNoteEntryMethod = false;
       proximity                = 6;
@@ -343,7 +343,7 @@ void Preferences::read()
       bgUseColor      = s.value("bgUseColor", true).toBool();
       fgUseColor      = s.value("fgUseColor", false).toBool();
       bgWallpaper     = s.value("bgWallpaper").toString();
-      fgWallpaper     = s.value("fgWallpaper", ":/data/paper5.png").toString();
+      fgWallpaper     = s.value("fgWallpaper", INSTPREFIX "/share/" INSTALL_NAME "wallpaper/paper5.png").toString();
       fgColor         = s.value("fgColor", QColor(255, 255, 255)).value<QColor>();
       bgColor         = s.value("bgColor", QColor(0x76, 0x76, 0x6e)).value<QColor>();
 
@@ -448,8 +448,8 @@ void Preferences::read()
       else if (ss == "empty")
             sessionStart = EMPTY_SESSION;
 
-      startScore     = s.value("startScore", ":/data/demo.mscx").toString();
-      instrumentList = s.value("instrumentList", ":/data/instruments.xml").toString();
+      startScore     = s.value("startScore", INSTPREFIX "/share/" INSTALL_NAME "demos/promenade.mscx").toString();
+      instrumentList = s.value("instrumentList", INSTPREFIX "/share/" INSTALL_NAME "templates/instruments.xml").toString();
 
       s.beginGroup("PlayPanel");
       playPanelPos = s.value("pos", QPoint(100, 300)).toPoint();