mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-07-31 21:22:27 -04:00
Fix several formatting flaws.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@7538 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
025cd28e0a
commit
3fa52a1a86
@ -115,8 +115,8 @@ target_link_libraries (map65 m65impl ${fftw3f_LIBRARIES} ${CMAKE_CURRENT_SOURCE_
|
|||||||
|
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
target_link_libraries (map65)
|
target_link_libraries (map65)
|
||||||
# set_target_properties (map65 PROPERTIES LINK_FLAGS_RELEASE "${LINKER_FLAGS_RELEASE} ")
|
set_target_properties (map65 PROPERTIES LINK_FLAGS_RELEASE "${LINKER_FLAGS_RELEASE} ")
|
||||||
set_target_properties (map65 PROPERTIES LINK_FLAGS_RELEASE "${LINKER_FLAGS_RELEASE} -mwindows")
|
# set_target_properties (map65 PROPERTIES LINK_FLAGS_RELEASE "${LINKER_FLAGS_RELEASE} -mwindows")
|
||||||
endif (WIN32)
|
endif (WIN32)
|
||||||
qt5_use_modules (map65 Widgets Multimedia OpenGL)
|
qt5_use_modules (map65 Widgets Multimedia OpenGL)
|
||||||
|
|
||||||
|
@ -204,7 +204,7 @@ subroutine qra64c(cx,cy,nutc,nqd,ikhz,nfqso,ntol,xpol,mycall_12, &
|
|||||||
if(irc.ge.0) then
|
if(irc.ge.0) then
|
||||||
write(*,1010) ikHz,nfreq,npol,nutc,dtx,nsnr,cmode(1:1),decoded, &
|
write(*,1010) ikHz,nfreq,npol,nutc,dtx,nsnr,cmode(1:1),decoded, &
|
||||||
irc,ntxpol,cp
|
irc,ntxpol,cp
|
||||||
1010 format('!',i3,i5,i4,i6.4,f5.1,i5,1x,a1,1x,a22,i2,i5,6x,a1)
|
1010 format('!',i3,i5,i4,i6.4,f5.1,i5,1x,a1,1x,a22,i2,5x,i5,1x,a1)
|
||||||
nwrite_qra64=nwrite_qra64+1
|
nwrite_qra64=nwrite_qra64+1
|
||||||
freq=144.0 + 0.001*ikhz
|
freq=144.0 + 0.001*ikhz
|
||||||
write(21,1014) freq,nfreq,dtx,npol,nsnr,nutc,decoded,cp, &
|
write(21,1014) freq,nfreq,dtx,npol,nsnr,nutc,decoded,cp, &
|
||||||
|
@ -86,7 +86,7 @@ subroutine timer(dname,k)
|
|||||||
dutf=dut(i)/total
|
dutf=dut(i)/total
|
||||||
sum=sum+dut(i)
|
sum=sum+dut(i)
|
||||||
sumf=sumf+dutf
|
sumf=sumf+dutf
|
||||||
kk=nlevel(i)
|
kk=min(nlevel(i),8)
|
||||||
sname=space(1:kk)//name(i)//space(1:8-kk)
|
sname=space(1:kk)//name(i)//space(1:8-kk)
|
||||||
ename=space
|
ename=space
|
||||||
if(i.ge.2) ename=name(nparent(i))
|
if(i.ge.2) ename=name(nparent(i))
|
||||||
|
@ -1727,7 +1727,7 @@ void MainWindow::doubleClickOnCall(QString hiscall, bool ctrl)
|
|||||||
QString t1 = t.mid(0,i2); //contents up to text cursor
|
QString t1 = t.mid(0,i2); //contents up to text cursor
|
||||||
int i1=t1.lastIndexOf("\n") + 1;
|
int i1=t1.lastIndexOf("\n") + 1;
|
||||||
QString t2 = t1.mid(i1,i2-i1); //selected line
|
QString t2 = t1.mid(i1,i2-i1); //selected line
|
||||||
int n = 60*t2.mid(13,2).toInt() + t2.mid(15,2).toInt();
|
int n = 60*t2.mid(14,2).toInt() + t2.mid(16,2).toInt();
|
||||||
m_txFirst = ((n%2) == 1);
|
m_txFirst = ((n%2) == 1);
|
||||||
ui->txFirstCheckBox->setChecked(m_txFirst);
|
ui->txFirstCheckBox->setChecked(m_txFirst);
|
||||||
QString rpt="";
|
QString rpt="";
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>635</width>
|
<width>635</width>
|
||||||
<height>477</height>
|
<height>497</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
@ -59,7 +59,7 @@
|
|||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="title">
|
<property name="title">
|
||||||
<string> Freq DF Pol UTC DT dB</string>
|
<string> Freq DF Pol UTC DT dB RC DS TxPol</string>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_9">
|
<layout class="QVBoxLayout" name="verticalLayout_9">
|
||||||
<item>
|
<item>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user