diff --git a/TODO b/TODO index e037959c2..f910c90f5 100644 --- a/TODO +++ b/TODO @@ -3,6 +3,8 @@ ToDo-List for kdvi URGENT +o fix network transparency bug in kviewshell + o implement SaveAs HIGHLY DESIRABLE diff --git a/dviwin.cpp b/dviwin.cpp index f745249c5..36407c745 100644 --- a/dviwin.cpp +++ b/dviwin.cpp @@ -473,7 +473,9 @@ void dviWindow::mousePressEvent ( QMouseEvent * e ) QString locallink = hyperLinkList[i].linkText.mid(1); // Drop the '#' at the beginning for(int j=0; jsetProduct("kdvi", "0.9beta", QString::null, QString::null); + ab->setProduct("kdvi", "0.9", QString::null, QString::null); ab->addTextPage (i18n("About"), i18n("A previewer for Device Independent files (DVI files) produced " "by the TeX typesetting system.
" @@ -258,7 +258,7 @@ void KDVIMultiPage::about() void KDVIMultiPage::bugform() { - KAboutData *kab = new KAboutData("kdvi", i18n("KDVI"), "0.9 beta", 0, 0, 0, 0, 0); + KAboutData *kab = new KAboutData("kdvi", i18n("KDVI"), "0.9", 0, 0, 0, 0, 0); KBugReport *kbr = new KBugReport(0, true, kab ); kbr->show(); } diff --git a/special.cpp b/special.cpp index 7e2ee51ed..6f94a56f9 100644 --- a/special.cpp +++ b/special.cpp @@ -34,7 +34,7 @@ void dviWindow::html_anchor_special(QString cp) AnchorList_String[numAnchors] = cp; AnchorList_Page[numAnchors] = current_page; - AnchorList_Vert[numAnchors] = (DVI_V*xres)/(65536*basedpi); // multiply with zoom to get pixel coords + AnchorList_Vert[numAnchors] = DVI_V/65536; // multiply with zoom to get pixel coords if (numAnchors < MAX_ANCHORS-2) numAnchors++; }