1. Dashed line between decoding periods.

2. Tweak four2a for compilation on 64-bit systems.


git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3287 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2013-05-21 11:43:01 +00:00
parent 2012d763ed
commit b226f532d4
2 changed files with 6 additions and 5 deletions

View File

@ -20,10 +20,10 @@ subroutine four2a(a,nfft,ndim,isign,iform)
parameter (NSMALL=16384)
complex a(nfft)
complex aa(NSMALL)
integer nn(NPMAX),ns(NPMAX),nf(NPMAX),nl(NPMAX)
integer*8 plan(NPMAX) !Actually should be i*8, but no matter
! data nplan/0/,npatience/1/
data nplan/0/,npatience/0/
integer nn(NPMAX),ns(NPMAX),nf(NPMAX)
integer*8 plan(NPMAX),nl(NPMAX),nloc
data nplan/0/,npatience/1/
! data nplan/0/,npatience/0/
include 'fftw3.f'
save plan,nplan,nn,ns,nf,nl

View File

@ -1307,8 +1307,9 @@ void MainWindow::readFromStdout() //readFromStdout
if(m_insertBlank and m_blankLine and jt9com_.nagain==0) {
QString bg="#d3d3d3";
bf.setBackground(QBrush(QColor(bg)));
QString tt="----------------------------------------";
QString s = "<table border=0 cellspacing=0 width=100%><tr><td bgcolor=\"" +
bg + "\"><pre>" + " " + "</pre></td></tr></table>";
bg + "\"><pre>" + tt + "</pre></td></tr></table>";
cursor = ui->decodedTextBrowser->textCursor();
cursor.movePosition(QTextCursor::End);
bf = cursor.blockFormat();