| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/print/xmbibtex/files/ |
Upload File : |
--- print_cb.cc.orig
+++ print_cb.cc
@@ -2,9 +2,9 @@
/* Print LaTeX Module */
/* Last change 18.08.1996 */
-#include <iostream.h>
-#include <fstream.h>
-#include <string.h>
+#include <iostream>
+#include <fstream>
+#include <cstring>
#include <X11/cursorfont.h>
#include "globals.h"
@@ -13,18 +13,18 @@
char *filename;
char *db, *pdb;
unsigned long n;
- ofstream out;
+ std::ofstream out;
Cursor uhr, pfeil;
XmFileSelectionBoxCallbackStruct *cbs=
(XmFileSelectionBoxCallbackStruct *) call_data;
if (!XmStringGetLtoR(cbs->value, XmFONTLIST_DEFAULT_TAG, &filename)) {
- cout << "Internal error pasting filename! \n";
+ std::cout << "Internal error pasting filename! \n";
return;
}
if (!*filename) {
- cout << "No file selected! \n";
+ std::cout << "No file selected! \n";
XtFree(filename);
return;
}
@@ -37,7 +37,7 @@
out.open(filename);
if(!out) {
- cout << "Cannot open LaTeX file for output! \n";
+ std::cout << "Cannot open LaTeX file for output! \n";
return;
}