- Timestamp:
- Oct 11, 2013 10:47:13 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/UISettingsDialog.cpp
r48577 r49050 326 326 /* Remember text: */ 327 327 pValidator->setLastMessage(text.join("<br><br>")); 328 LogRel (("Settings Dialog: Page validation FAILED: {%s}\n",329 pValidator->lastMessage().toUtf8().constData()));328 LogRelFlow(("Settings Dialog: Page validation FAILED: {%s}\n", 329 pValidator->lastMessage().toUtf8().constData())); 330 330 } 331 331 } … … 347 347 /* What page is it related to? */ 348 348 UISettingsPage *pFailedSettingsPage = pValidator->page(); 349 LogRel (("Settings Dialog: Dialog validation FAILED: Page *%s*\n",350 pFailedSettingsPage->internalName().toUtf8().constData()));349 LogRelFlow(("Settings Dialog: Dialog validation FAILED: Page *%s*\n", 350 pFailedSettingsPage->internalName().toUtf8().constData())); 351 351 352 352 /* Show error first: */ … … 384 384 const QString strPageName(pSettingsPage->internalName()); 385 385 386 LogRel (("Settings Dialog: %s Page: Revalidation in progress..\n",387 strPageName.toUtf8().constData()));386 LogRelFlow(("Settings Dialog: %s Page: Revalidation in progress..\n", 387 strPageName.toUtf8().constData())); 388 388 389 389 /* Perform page revalidation: */ … … 394 394 revalidate(); 395 395 396 LogRel (("Settings Dialog: %s Page: Revalidation complete.\n",397 strPageName.toUtf8().constData()));396 LogRelFlow(("Settings Dialog: %s Page: Revalidation complete.\n", 397 strPageName.toUtf8().constData())); 398 398 } 399 399 } … … 401 401 void UISettingsDialog::sltHandleWarningPaneHovered(UIPageValidator *pValidator) 402 402 { 403 LogRel (("Settings Dialog: Warning-icon hovered: %s.\n", pValidator->internalName().toUtf8().constData()));403 LogRelFlow(("Settings Dialog: Warning-icon hovered: %s.\n", pValidator->internalName().toUtf8().constData())); 404 404 405 405 /* Show corresponding popup: */ … … 413 413 void UISettingsDialog::sltHandleWarningPaneUnhovered(UIPageValidator *pValidator) 414 414 { 415 LogRel (("Settings Dialog: Warning-icon unhovered: %s.\n", pValidator->internalName().toUtf8().constData()));415 LogRelFlow(("Settings Dialog: Warning-icon unhovered: %s.\n", pValidator->internalName().toUtf8().constData())); 416 416 417 417 /* Recall corresponding popup: */
Note:
See TracChangeset
for help on using the changeset viewer.