mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-29 07:28:54 -04:00
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:
parent
a9cf90c078
commit
3d4f935620
@ -20,10 +20,10 @@ subroutine four2a(a,nfft,ndim,isign,iform)
|
|||||||
parameter (NSMALL=16384)
|
parameter (NSMALL=16384)
|
||||||
complex a(nfft)
|
complex a(nfft)
|
||||||
complex aa(NSMALL)
|
complex aa(NSMALL)
|
||||||
integer nn(NPMAX),ns(NPMAX),nf(NPMAX),nl(NPMAX)
|
integer nn(NPMAX),ns(NPMAX),nf(NPMAX)
|
||||||
integer*8 plan(NPMAX) !Actually should be i*8, but no matter
|
integer*8 plan(NPMAX),nl(NPMAX),nloc
|
||||||
! data nplan/0/,npatience/1/
|
data nplan/0/,npatience/1/
|
||||||
data nplan/0/,npatience/0/
|
! data nplan/0/,npatience/0/
|
||||||
include 'fftw3.f'
|
include 'fftw3.f'
|
||||||
save plan,nplan,nn,ns,nf,nl
|
save plan,nplan,nn,ns,nf,nl
|
||||||
|
|
||||||
|
@ -1307,8 +1307,9 @@ void MainWindow::readFromStdout() //readFromStdout
|
|||||||
if(m_insertBlank and m_blankLine and jt9com_.nagain==0) {
|
if(m_insertBlank and m_blankLine and jt9com_.nagain==0) {
|
||||||
QString bg="#d3d3d3";
|
QString bg="#d3d3d3";
|
||||||
bf.setBackground(QBrush(QColor(bg)));
|
bf.setBackground(QBrush(QColor(bg)));
|
||||||
|
QString tt="----------------------------------------";
|
||||||
QString s = "<table border=0 cellspacing=0 width=100%><tr><td bgcolor=\"" +
|
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 = ui->decodedTextBrowser->textCursor();
|
||||||
cursor.movePosition(QTextCursor::End);
|
cursor.movePosition(QTextCursor::End);
|
||||||
bf = cursor.blockFormat();
|
bf = cursor.blockFormat();
|
||||||
|
Loading…
Reference in New Issue
Block a user