16 lines
293 B
C++
16 lines
293 B
C++
|
#pragma once
|
||
|
#include "Utils.h"
|
||
|
|
||
|
void openInPdf(const File& file)
|
||
|
{
|
||
|
if (file.existsAsFile()) {
|
||
|
|
||
|
file.startAsProcess();
|
||
|
|
||
|
}
|
||
|
else {
|
||
|
|
||
|
NativeMessageBox::showMessageBox(AlertWindow::WarningIcon, "Error", "OB-Xd Manual.pdf not found.");
|
||
|
}
|
||
|
}
|