Skip to content

Commit f8eae87

Browse files
committed
Fix merge errors.
1 parent ce89120 commit f8eae87

File tree

1 file changed

+4
-20
lines changed

1 file changed

+4
-20
lines changed

examples/basic/mainwindow_funcs.cpp

Lines changed: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ MainWindow::MainWindow() : QMainWindow()
6161
ui_.TestingWidget->showAllData();
6262
};
6363

64-
<<<<<<< HEAD
6564
void MainWindow::on_mouseCoordStyleCombo_currentIndexChanged(int index)
6665
{
6766
switch (index)
@@ -88,10 +87,7 @@ void MainWindow::setExternalMouseCoordinatesText(QPointF p)
8887
ui_.externalMouseCoordLabel->setText(QString("%1 %2").arg(QString::number(p.x()), QString::number(p.y())));
8988
}
9089

91-
void MainWindow::on_XLabelAlignmentCombo_currentIndexChanged(int index)
92-
=======
9390
void MainWindow::on_XLabelRotationCombo_currentIndexChanged(int index)
94-
>>>>>>> 007008d (Remove enum and change naming conventions.)
9591
{
9692
switch (index)
9793
{
@@ -102,11 +98,7 @@ void MainWindow::on_XLabelRotationCombo_currentIndexChanged(int index)
10298
ui_.TestingWidget->xAxis()->setTitleLabelRotation(90.0);
10399
break;
104100
default:
105-
<<<<<<< HEAD
106-
throw(std::runtime_error("Unhandled text alignment mode.\n"));
107-
=======
108-
throw(std::runtime_error("Unhandled text rotation."));
109-
>>>>>>> 007008d (Remove enum and change naming conventions.)
101+
throw(std::runtime_error("Unhandled text rotation.\n"));
110102
}
111103
}
112104

@@ -121,11 +113,7 @@ void MainWindow::on_YLabelRotationCombo_currentIndexChanged(int index)
121113
ui_.TestingWidget->yAxis()->setTitleLabelRotation(90.0);
122114
break;
123115
default:
124-
<<<<<<< HEAD
125-
throw(std::runtime_error("Unhandled text alignment mode.\n"));
126-
=======
127-
throw(std::runtime_error("Unhandled text rotation."));
128-
>>>>>>> 007008d (Remove enum and change naming conventions.)
116+
throw(std::runtime_error("Unhandled text rotation.\n"));
129117
}
130118
}
131119

@@ -140,10 +128,6 @@ void MainWindow::on_ZLabelRotationCombo_currentIndexChanged(int index)
140128
ui_.TestingWidget->zAxis()->setTitleLabelRotation(90.0);
141129
break;
142130
default:
143-
<<<<<<< HEAD
144-
throw(std::runtime_error("Unhandled text alignment mode.\n"));
145-
=======
146-
throw(std::runtime_error("Unhandled text Rotation mode."));
147-
>>>>>>> 007008d (Remove enum and change naming conventions.)
131+
throw(std::runtime_error("Unhandled text Rotation mode.\n"));
148132
}
149-
}
133+
}

0 commit comments

Comments
 (0)