Selaa lähdekoodia

Treating the database as external file instead of as resource

Rafael Arce Nazario 9 vuotta sitten
vanhempi
commit
84e620dd7b
3 muutettua tiedostoa jossa 3 lisäystä ja 8 poistoa
  1. 2
    2
      DVDInfo.pro
  2. 0
    5
      database.qrc
  3. 1
    1
      main.cpp

+ 2
- 2
DVDInfo.pro Näytä tiedosto

@@ -23,5 +23,5 @@ HEADERS += \
23 23
     filemanip.h \
24 24
     movie.h
25 25
 
26
-RESOURCES += \
27
-    database.qrc
26
+#RESOURCES += \
27
+#    database.qrc

+ 0
- 5
database.qrc Näytä tiedosto

@@ -1,5 +0,0 @@
1
-<!DOCTYPE RCC><RCC version="1.0">
2
-<qresource>
3
-    <file>dvd_csv.txt</file>
4
-</qresource>
5
-</RCC>

+ 1
- 1
main.cpp Näytä tiedosto

@@ -11,7 +11,7 @@ using namespace std ;
11 11
 int main(int argc, char *argv[])
12 12
 {
13 13
     QCoreApplication a(argc, argv);
14
-    filemanip file(":/dvd_csv.txt") ;
14
+    filemanip file("dvd_csv.txt") ;
15 15
     string rating, year, genre, name, studio ;
16 16
     string movieinfo ;
17 17