Skip to content

Commit 0162b81

Browse files
authored
[Fix] t-SNE wxWidgets debug alert (#2516)
1 parent fcdf81d commit 0162b81

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

DialogTools/tSNEDlg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ void TSNEDlg::CreateControls()
281281
std::vector<double> X(n, 0), Y(n,0);
282282
std::vector<bool> X_undef(n, false), Y_undef(n,false);
283283
int style = AnimatePlotcanvas::DEFAULT_STYLE | AnimatePlotcanvas::show_vert_axis_through_origin | AnimatePlotcanvas::show_data_points | AnimatePlotcanvas::show_horiz_axis_through_origin;
284-
m_animate = new AnimatePlotcanvas(this, NULL, project, X, Y, X_undef, Y_undef,
284+
m_animate = new AnimatePlotcanvas(panel, NULL, project, X, Y, X_undef, Y_undef,
285285
"", "", style, std::vector<std::vector<int> >(),
286286
"", "", wxDefaultPosition,
287287
wxSize(300, 300));

version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ namespace Gda {
22
const int version_major = 1;
33
const int version_minor = 22;
44
const int version_build = 0;
5-
const int version_subbuild = 12;
5+
const int version_subbuild = 14;
66
const int version_year = 2025;
77
const int version_month = 1;
8-
const int version_day = 15;
8+
const int version_day = 29;
99
const int version_night = 0;
1010
const int version_type = 2; // 0: alpha, 1: beta, 2: release
1111
} // namespace Gda

0 commit comments

Comments
 (0)