1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-05 11:13:16 +01:00

Make better discrimination of wxLogMessage, wxLogDebug, and wxLogError usage so user doesn't see lots of irrelevant info in log window, only messages and errors they should need to see. For example, user doesn't need to see every step of loading FFmpeg in release build, only errors, if they occur.

Comment out in FreqWindow.cpp the wxLog* stuff that can just be done with breakpoints ("Starting FreqWindow::Plot()" et al).
This commit is contained in:
v.audacity
2010-08-10 05:13:28 +00:00
parent a6cb818f42
commit 0ae919f656
9 changed files with 106 additions and 103 deletions

View File

@@ -547,11 +547,10 @@ bool ShowDependencyDialogIfNeeded(AudacityProject *project,
if (!isSaving)
{
wxString msg =
_("Your project is currently self-contained; it does not depend on any external audio files.");
if (project->GetUndoManager()->UndoAvailable())
msg +=
_("\n\nIf you Undo back to a state where it has external dependencies on imported files, it will no \
longer be self-contained. If you then Save without copying those files in, you may lose data.");
_("Your project is currently self-contained; it does not depend on any external audio files. \
\n\nIf you change the project to a state where it has external dependencies on imported \
files, it will no longer be self-contained. If you then Save without copying those files in, \
you may lose data.");
wxMessageBox(msg,
_("Dependency Check"),
wxOK | wxICON_INFORMATION,