summaryrefslogtreecommitdiff
blob: bff8283df96a04abe3c087c7034af1055ade7e20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
--- src/Makefile	2006-07-28 00:46:38.325333128 -0400
+++ src/Makefile	2006-07-28 00:46:45.732207112 -0400
@@ -748,7 +748,7 @@
 	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/main.o main.cpp
 
 build/Loqqer.o: Loqqer.cpp Loqqer.h
-	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o build/Loqqer.o Loqqer.cpp
+	$(CXX) -c $(CXXFLAGS) -fPIC $(INCPATH) -o build/Loqqer.o Loqqer.cpp
 
 build/container.o: container.cpp container.h \
 		playerlistener.h \
--- src/wizardselectupdatespage.cpp	2006-07-28 14:32:19.099658720 -0400
+++ src/wizardselectupdatespage.cpp	2006-07-28 15:29:14.400454080 -0400
@@ -86,7 +86,7 @@
         item->setCheckState(nCheck == 1 ? Qt::Checked : Qt::Unchecked);
 
         // Store its pointer along with string
-        item->setData(1, reinterpret_cast<unsigned int>(&current));
+        item->setData(1, reinterpret_cast<unsigned long long>(&current));
     }
 }
 
@@ -122,7 +122,7 @@
         {
             CComponentInfo* pComp =
                 reinterpret_cast<CComponentInfo*>(
-                    ui.updatesList->item(i)->data(1).toUInt());
+                    ui.updatesList->item(i)->data(1).toULongLong());
             vecChecked.push_back(pComp);
         }
     }