238 |
238 |
239 // ============================================================================= |
239 // ============================================================================= |
240 // ============================================================================= |
240 // ============================================================================= |
241 void LDrawPathDialog::slot_tryConfigure() |
241 void LDrawPathDialog::slot_tryConfigure() |
242 { |
242 { |
243 if (LDPaths::tryConfigure (filename()) == false) |
243 if (not LDPaths::tryConfigure (filename())) |
244 { |
244 { |
245 ui->status->setText (format ("<span style=\"color:#700; \">%1</span>", LDPaths::getError())); |
245 ui->status->setText (format ("<span style=\"color:#700; \">%1</span>", LDPaths::getError())); |
246 okButton()->setEnabled (false); |
246 okButton()->setEnabled (false); |
247 return; |
247 return; |
248 } |
248 } |
326 // ============================================================================= |
326 // ============================================================================= |
327 void ExtProgPathPrompt::findPath() |
327 void ExtProgPathPrompt::findPath() |
328 { |
328 { |
329 QString path = QFileDialog::getOpenFileName (null, "", "", g_extProgPathFilter); |
329 QString path = QFileDialog::getOpenFileName (null, "", "", g_extProgPathFilter); |
330 |
330 |
331 if (!path.isEmpty()) |
331 if (not path.isEmpty()) |
332 ui->m_path->setText (path); |
332 ui->m_path->setText (path); |
333 } |
333 } |
334 |
334 |
335 // ============================================================================= |
335 // ============================================================================= |
336 // ============================================================================= |
336 // ============================================================================= |