Changeset 153
- Timestamp:
- Feb 21, 2014, 2:39:42 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
diffs/psi_0.16.diff
r152 r153 607 607 diff -Naur -x Makefile -x '*.dll' -x 'conf*.pri' -x '*.zip' -x '*.exe' -x '*.map' -x '*.obj' -x '*.moc' -x '*.rcc' -x iris.prl -x irisnet.prl -x '*.sym' -x .ui -x '*.bak' -x '*.lib' -x '*.rsp' -x 'moc_*.cpp' -x Info.plist -x conf.log vendor/current/os2/Readme.OS2 trunk/os2/Readme.OS2 608 608 --- vendor/current/os2/Readme.OS2 1970-01-01 01:00:00.000000000 +0100 609 +++ trunk/os2/Readme.OS2 201 3-12-06 15:50:44.000000000 +0100610 @@ -0,0 +1,22 5@@609 +++ trunk/os2/Readme.OS2 2014-02-18 12:25:44.000000000 +0100 610 @@ -0,0 +1,228 @@ 611 611 +Psi 0.16-dev for OS/2 and eComStation 612 612 +------------------------------------- … … 814 814 +9. HISTORY 815 815 +========== 816 + 817 + 2014-02-18 818 + * updated to latest 0.16-dev sources 816 819 + 817 820 + 2013-12-06 … … 900 903 diff -Naur -x Makefile -x '*.dll' -x 'conf*.pri' -x '*.zip' -x '*.exe' -x '*.map' -x '*.obj' -x '*.moc' -x '*.rcc' -x iris.prl -x irisnet.prl -x '*.sym' -x .ui -x '*.bak' -x '*.lib' -x '*.rsp' -x 'moc_*.cpp' -x Info.plist -x conf.log vendor/current/src/config.h trunk/src/config.h 901 904 --- vendor/current/src/config.h 1970-01-01 01:00:00.000000000 +0100 902 +++ trunk/src/config.h 201 3-12-06 16:46:00.000000000 +0100905 +++ trunk/src/config.h 2014-02-18 19:33:06.000000000 +0100 903 906 @@ -0,0 +1,3 @@ 904 907 +#define PSI_LIBDIR "/usr/local/lib/psi" 905 908 +#define PSI_DATADIR "/usr/local/share/psi" 906 +#define PSI_VERSION "0.16-dev-201 31206"909 +#define PSI_VERSION "0.16-dev-20140218" 907 910 diff -Naur -x Makefile -x '*.dll' -x 'conf*.pri' -x '*.zip' -x '*.exe' -x '*.map' -x '*.obj' -x '*.moc' -x '*.rcc' -x iris.prl -x irisnet.prl -x '*.sym' -x .ui -x '*.bak' -x '*.lib' -x '*.rsp' -x 'moc_*.cpp' -x Info.plist -x conf.log vendor/current/src/homedirmigration.cpp trunk/src/homedirmigration.cpp 908 911 --- vendor/current/src/homedirmigration.cpp 2013-08-22 16:52:32.000000000 +0200 … … 1189 1192 #if defined(Q_OS_WIN) 1190 1193 diff -Naur -x Makefile -x '*.dll' -x 'conf*.pri' -x '*.zip' -x '*.exe' -x '*.map' -x '*.obj' -x '*.moc' -x '*.rcc' -x iris.prl -x irisnet.prl -x '*.sym' -x .ui -x '*.bak' -x '*.lib' -x '*.rsp' -x 'moc_*.cpp' -x Info.plist -x conf.log vendor/current/src/textutil.cpp trunk/src/textutil.cpp 1191 --- vendor/current/src/textutil.cpp 201 3-12-03 18:34:22.000000000 +01001192 +++ trunk/src/textutil.cpp 201 3-12-05 14:18:58.000000000 +01001194 --- vendor/current/src/textutil.cpp 2014-02-18 11:42:48.000000000 +0100 1195 +++ trunk/src/textutil.cpp 2014-02-18 12:22:34.000000000 +0100 1193 1196 @@ -87,7 +87,7 @@ 1194 1197 int col = 0; … … 1202 1205 diff -Naur -x Makefile -x '*.dll' -x 'conf*.pri' -x '*.zip' -x '*.exe' -x '*.map' -x '*.obj' -x '*.moc' -x '*.rcc' -x iris.prl -x irisnet.prl -x '*.sym' -x .ui -x '*.bak' -x '*.lib' -x '*.rsp' -x 'moc_*.cpp' -x Info.plist -x conf.log vendor/current/src/webview.cpp trunk/src/webview.cpp 1203 1206 --- vendor/current/src/webview.cpp 2013-12-03 18:34:22.000000000 +0100 1204 +++ trunk/src/webview.cpp 2013-12-06 17:20:26.000000000 +0100 1205 @@ -166,6 +166,22 @@ 1207 +++ trunk/src/webview.cpp 2014-02-19 16:26:34.000000000 +0100 1208 @@ -141,8 +141,11 @@ 1209 1210 QDrag *drag = new QDrag(this); 1211 QMimeData *mimeData = new QMimeData; 1212 - 1213 +#ifdef __OS2__ // remove with qt 4.8 or better 1214 + QString html = selectedHtml(); 1215 +#else 1216 QString html = TextUtil::img2title(selectedHtml()); 1217 +#endif 1218 mimeData->setHtml(html); 1219 mimeData->setText(TextUtil::rich2plain(html)); 1220 1221 @@ -153,7 +156,11 @@ 1222 void WebView::convertClipboardHtmlImages(QClipboard::Mode mode) 1223 { 1224 QClipboard *cb = QApplication::clipboard(); 1225 +#ifdef __OS2__ // remove with qt 4.8 or better 1226 + QString html = TextUtil::img2title(cb->mimeData(mode)->html()); 1227 +#else 1228 QString html = TextUtil::img2title(selectedHtml()); 1229 +#endif 1230 QMimeData *data = new QMimeData; 1231 data->setHtml(html); 1232 data->setText(TextUtil::rich2plain(html, false)); 1233 @@ -166,6 +173,22 @@ 1206 1234 page()->mainFrame()->evaluateJavaScript(scriptSource); 1207 1235 }
Note:
See TracChangeset
for help on using the changeset viewer.