mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-04-08 20:39:36 -04:00
Merge branch 'release-2.5.0'
This commit is contained in:
commit
68a3d410da
@ -1401,8 +1401,10 @@ else (${OPENMP_FOUND} OR APPLE)
|
||||
target_link_libraries (jt9 wsjt_fort wsjt_cxx fort_qt)
|
||||
endif (${OPENMP_FOUND} OR APPLE)
|
||||
|
||||
# build map65
|
||||
add_subdirectory (map65)
|
||||
if (WIN32)
|
||||
# build map65
|
||||
add_subdirectory (map65)
|
||||
endif ()
|
||||
|
||||
# build the main application
|
||||
generate_version_info (wsjtx_VERSION_RESOURCES
|
||||
|
@ -98,7 +98,7 @@ subroutine extract(s3,nadd,ncount,nhist,decoded,ltext)
|
||||
itmp(i)=correct(64-i)
|
||||
enddo
|
||||
correct(1:63)=itmp(1:63)
|
||||
call interleave63(correct,63,1)
|
||||
call interleave63(correct,1)
|
||||
call graycode65(correct,63,1)
|
||||
call unpackmsg(dat4,decoded) !Unpack the user message
|
||||
ncount=0
|
||||
@ -120,7 +120,7 @@ subroutine getpp(workdat,p)
|
||||
|
||||
a(1:63)=workdat(63:1:-1)
|
||||
call interleave63(a,1)
|
||||
call graycode(a,63,1,a)
|
||||
call graycode(a,63,1)
|
||||
|
||||
psum=0.
|
||||
do j=1,63
|
||||
|
@ -24,8 +24,8 @@ public:
|
||||
explicit CPlotter(QWidget *parent = 0);
|
||||
~CPlotter();
|
||||
|
||||
QSize minimumSizeHint() const;
|
||||
QSize sizeHint() const;
|
||||
QSize minimumSizeHint() const override;
|
||||
QSize sizeHint() const override;
|
||||
QColor m_ColorTbl[256];
|
||||
bool m_bDecodeFinished;
|
||||
int m_plotZero;
|
||||
@ -81,8 +81,8 @@ signals:
|
||||
|
||||
protected:
|
||||
//re-implemented widget event handlers
|
||||
void paintEvent(QPaintEvent *event);
|
||||
void resizeEvent(QResizeEvent* event);
|
||||
void paintEvent(QPaintEvent *event) override;
|
||||
void resizeEvent(QResizeEvent* event) override;
|
||||
void mouseMoveEvent(QMouseEvent * event) override;
|
||||
|
||||
private:
|
||||
@ -132,8 +132,8 @@ private:
|
||||
qint32 m_TxDF;
|
||||
|
||||
private slots:
|
||||
void mousePressEvent(QMouseEvent *event);
|
||||
void mouseDoubleClickEvent(QMouseEvent *event);
|
||||
void mousePressEvent(QMouseEvent *event) override;
|
||||
void mouseDoubleClickEvent(QMouseEvent *event) override;
|
||||
};
|
||||
|
||||
#endif // PLOTTER_H
|
||||
|
Loading…
Reference in New Issue
Block a user