View | Details | Raw Unified | Return to bug 75183
Collapse All | Expand All

(-)qterm/files/patch-qterm_qtermcanvas.cpp (+11 lines)
Line 0 Link Here
1
--- qterm/qtermcanvas.cpp.orig	Fri Dec 17 19:26:35 2004
2
+++ qterm/qtermcanvas.cpp	Fri Dec 17 19:26:39 2004
3
@@ -238,7 +238,7 @@
4
 	if(strSave.isEmpty())
5
 		return;
6
 	QString fmt = fi.extension(false).upper();
7
-	if(!pxm.save(strSave, fmt=="JPG"?"JPEG":fmt))
8
+	if(!pxm.save(strSave, fmt=="JPG"?QString("JPEG"):fmt))
9
 		QMessageBox::warning(this, "Failed to save file", "Cant save file, maybe format not supported");
10
 }
11
 
(-)qterm/files/patch-qterm_qtermiplocation.cpp (-2 / +12 lines)
Lines 1-5 Link Here
1
--- qterm/qtermiplocation.cpp.orig	Tue Dec 14 18:45:37 2004
1
--- qterm/qtermiplocation.cpp.orig	Tue Dec  7 03:23:24 2004
2
+++ qterm/qtermiplocation.cpp	Tue Dec 14 18:46:21 2004
2
+++ qterm/qtermiplocation.cpp	Fri Dec 17 19:24:22 2004
3
@@ -9,8 +9,8 @@
4
 #ifdef Q_OS_WIN32
5
 #include <winsock2.h>
6
 #else
7
-#include <netinet/in.h>
8
 #include <arpa/inet.h>
9
+#include <netinet/in.h>
10
 #endif
11
 
12
 #include <qstring.h>
3
@@ -79,13 +79,13 @@
13
@@ -79,13 +79,13 @@
4
 	if( fseek( fp, (long)offset, SEEK_SET ) ==-1 )
14
 	if( fseek( fp, (long)offset, SEEK_SET ) ==-1 )
5
 	{
15
 	{

Return to bug 75183