Skip to content
This repository was archived by the owner on Sep 27, 2024. It is now read-only.

Commit a46e69c

Browse files
committed
Removed the app org domain definition.
The org domain messes up the app title in the Gnome top bar. Other QT apps s.a. Wireshark and QT Creator don't specify the domain. Also a domain is not the same thing as website URL.
1 parent d776ea6 commit a46e69c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Application.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,12 @@ Application::Application(int& argc, char** argv):
3535
mMainWindow(0)
3636
{
3737
setOrganizationName("SCAP Workbench upstream");
38-
setOrganizationDomain("https://www.open-scap.org/tools/scap-workbench");
38+
// The org domain messes up the app title in the Gnome top bar.
39+
// Other QT apps s.a. Wireshark, QT Creator don't specify the domain.
40+
// setOrganizationDomain("open-scap.org");
3941

4042
setApplicationName("SCAP Workbench");
43+
setApplicationDisplayName("SCAP Workbench");
4144
setApplicationVersion(SCAP_WORKBENCH_VERSION);
4245

4346
mMainWindow = new MainWindow();

0 commit comments

Comments
 (0)