From 33c53a2c7925d87fd1e51c24180ed234054be445 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Sun, 10 Feb 2019 12:14:02 -0800 Subject: [PATCH] adding org and app name #451 --- effects/internal/vsthost.cpp | 2 -- main.cpp | 5 ++++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/effects/internal/vsthost.cpp b/effects/internal/vsthost.cpp index 325a6683e..fd22d4b94 100644 --- a/effects/internal/vsthost.cpp +++ b/effects/internal/vsthost.cpp @@ -32,8 +32,6 @@ struct VSTRect { #define effGetChunk 23 #define effSetChunk 24 -const char* productString = "OLIVETEAM"; - // C callbacks extern "C" { // Main host callback diff --git a/main.cpp b/main.cpp index 1dd61ea02..f079e3725 100644 --- a/main.cpp +++ b/main.cpp @@ -89,7 +89,10 @@ int main(int argc, char *argv[]) { QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts); QApplication a(argc, argv); - a.setWindowIcon(QIcon(":/icons/olive64.png")); + a.setWindowIcon(QIcon(":/icons/olive64.png")); + + QCoreApplication::setOrganizationName("olivevideoeditor.org"); + QCoreApplication::setApplicationName("Olive"); MainWindow w(nullptr, appName); w.updateTitle("");