From 49607be57b8003143d3c4b130ba3cf4ab535d9cc Mon Sep 17 00:00:00 2001 From: Marek Roszko Date: Sun, 25 Oct 2020 20:21:21 -0400 Subject: [PATCH] Kick NAMELESS_PROJECT to project.h --- include/common.h | 3 --- include/project.h | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/include/common.h b/include/common.h index 0cd83faf1f..caf9b195a1 100644 --- a/include/common.h +++ b/include/common.h @@ -53,9 +53,6 @@ class PROJECT; class SEARCH_STACK; class REPORTER; -/// default name for nameless projects -#define NAMELESS_PROJECT wxT( "noname" ) - /** * Run a command in a child process. * diff --git a/include/project.h b/include/project.h index 0875d28761..28380d2eb4 100644 --- a/include/project.h +++ b/include/project.h @@ -37,6 +37,8 @@ /// Currently an environment variable, eventually a project variable. #define PROJECT_VAR_NAME wxT( "KIPRJMOD" ) +/// default name for nameless projects +#define NAMELESS_PROJECT wxT( "noname" ) class wxConfigBase; class PARAM_CFG;