mirror of
https://github.com/cookiengineer/audacity
synced 2026-03-12 17:35:33 +01:00
25 lines
442 B
C++
25 lines
442 B
C++
//
|
|
// NotYetAvailableException.cpp
|
|
//
|
|
//
|
|
// Created by Paul Licameli on 12/25/16.
|
|
//
|
|
//
|
|
|
|
#include "../Audacity.h"
|
|
#include "NotYetAvailableException.h"
|
|
|
|
#include "../Internat.h"
|
|
|
|
NotYetAvailableException::~NotYetAvailableException()
|
|
{
|
|
}
|
|
|
|
wxString NotYetAvailableException::ErrorMessage() const
|
|
{
|
|
return wxString::Format(
|
|
_("This operation cannot be done until importation of %s completes."),
|
|
fileName.GetFullName()
|
|
);
|
|
}
|