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 32 33 34
|
diff -Naur /tmp/kbedic-2.1.orig/src/main.cpp /tmp/kbedic-2.1/src/main.cpp
--- /tmp/kbedic-2.1.orig/src/main.cpp Wed Jun 20 07:02:13 2001
+++ /tmp/kbedic-2.1/src/main.cpp Thu Jun 21 23:04:21 2001
@@ -39,6 +39,9 @@
const char MISSING_DATA[] =
"Cannot open dictionary files 'engbul.dat' and 'buleng.dat'.\n"
+ "Please go to http://kbedic.sourceforge.net/download.php, get\n"
+ "the package bedic-data.tar.gz, unpack it and install the files\n"
+ "engbul.dat and buleng.dat in directory /usr/local/share/bedic/\n"
"Please look at README for additional information and help.";
diff -Naur /tmp/kbedic-2.1.orig/src/win.cpp /tmp/kbedic-2.1/src/win.cpp
--- /tmp/kbedic-2.1.orig/src/win.cpp Wed Jun 20 07:02:13 2001
+++ /tmp/kbedic-2.1/src/win.cpp Thu Jun 21 23:19:25 2001
@@ -159,7 +159,7 @@
static const int DEFAULT_FONT_SIZE = 14;
static const int DEFAULT_FONT_WEIGHT = 50;
static const bool DEFAULT_FONT_ITALIC = false;
-static const int DEFAULT_FONT_CHARSET = QFont::Latin1;
+static const int DEFAULT_FONT_CHARSET = QFont::CP1251;
static const char DEFAULT_GEOMETRY[] = "50, 50, 500, 300";
static const bool DEFAULT_ADV_SRCH_HIGHLIGHT = true;
static const bool DEFAULT_ADV_SRCH_WHOLE_WORD = true;
@@ -276,7 +276,7 @@
// Set caption of window
setCaption(W2U(CAPTION));
// Set icon of window
- QPixmap p1(diciconmini);
+ QPixmap p1(dicicon);
setIcon(p1);
// Set positions and size of window
|