File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ void label_img::showImage()
161
161
162
162
void label_img::loadLabelData (const QString& labelFilePath)
163
163
{
164
- ifstream inputFile (labelFilePath. toStdString ( ));
164
+ ifstream inputFile (qPrintable (labelFilePath ));
165
165
166
166
if (inputFile.is_open ())
167
167
{
Original file line number Diff line number Diff line change @@ -131,8 +131,7 @@ void MainWindow::save_label_data()const
131
131
if (m_imgList.size () == 0 ) return ;
132
132
133
133
QString qstrOutputLabelData = get_labeling_data (m_imgList.at (m_imgIndex));
134
-
135
- ofstream fileOutputLabelData (qstrOutputLabelData.toStdString ());
134
+ ofstream fileOutputLabelData (qPrintable (qstrOutputLabelData));
136
135
137
136
if (fileOutputLabelData.is_open ())
138
137
{
@@ -221,11 +220,10 @@ void MainWindow::prev_label()
221
220
222
221
void MainWindow::load_label_list_data (QString qstrLabelListFile)
223
222
{
224
- ifstream inputLabelListFile (qstrLabelListFile. toStdString ( ));
223
+ ifstream inputLabelListFile (qPrintable (qstrLabelListFile ));
225
224
226
225
if (inputLabelListFile.is_open ())
227
226
{
228
-
229
227
for (int i = 0 ; i <= ui->tableWidget_label ->rowCount (); i++)
230
228
ui->tableWidget_label ->removeRow (ui->tableWidget_label ->currentRow ());
231
229
You can’t perform that action at this time.
0 commit comments