Skip to content

Commit 403e19d

Browse files
committed
Fixing includes and namespaces
1 parent b4c610a commit 403e19d

22 files changed

+43
-43
lines changed

src/deployers/BasicPluginsDeployer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
#include <utility>
44

55
// library headers
6-
#include <linuxdeploy/core/log.h>
6+
#include <linuxdeploy/log/log.h>
77

88
// local headers
99
#include "BasicPluginsDeployer.h"
1010

11-
using namespace linuxdeploy::core::log;
11+
using namespace linuxdeploy::log;
1212
using namespace linuxdeploy::core::appdir;
1313
using namespace linuxdeploy::plugin::qt;
1414

src/deployers/BearerPluginsDeployer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
#include <filesystem>
33

44
// library headers
5-
#include <linuxdeploy/core/log.h>
5+
#include <linuxdeploy/log/log.h>
66

77
// local headers
88
#include "BearerPluginsDeployer.h"
99

1010
using namespace linuxdeploy::plugin::qt;
11-
using namespace linuxdeploy::core::log;
11+
using namespace linuxdeploy::log;
1212

1313
namespace fs = std::filesystem;
1414

src/deployers/GamepadPluginsDeployer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
#include <filesystem>
33

44
// library headers
5-
#include <linuxdeploy/core/log.h>
5+
#include <linuxdeploy/log/log.h>
66

77
// local headers
88
#include "GamepadPluginsDeployer.h"
99

1010
using namespace linuxdeploy::plugin::qt;
11-
using namespace linuxdeploy::core::log;
11+
using namespace linuxdeploy::log;
1212

1313
namespace fs = std::filesystem;
1414

src/deployers/LocationPluginsDeployer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
#include <filesystem>
33

44
// library headers
5-
#include <linuxdeploy/core/log.h>
5+
#include <linuxdeploy/log/log.h>
66

77
// local headers
88
#include "LocationPluginsDeployer.h"
99

1010
using namespace linuxdeploy::plugin::qt;
11-
using namespace linuxdeploy::core::log;
11+
using namespace linuxdeploy::log;
1212

1313
namespace fs = std::filesystem;
1414

src/deployers/Multimedia5PluginsDeployer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
#include <filesystem>
33

44
// library headers
5-
#include <linuxdeploy/core/log.h>
5+
#include <linuxdeploy/log/log.h>
66

77
// local headers
88
#include "Multimedia5PluginsDeployer.h"
99

1010
using namespace linuxdeploy::plugin::qt;
11-
using namespace linuxdeploy::core::log;
11+
using namespace linuxdeploy::log;
1212

1313
namespace fs = std::filesystem;
1414

src/deployers/Multimedia6PluginsDeployer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
#include <filesystem>
33

44
// library headers
5-
#include <linuxdeploy/core/log.h>
5+
#include <linuxdeploy/log/log.h>
66

77
// local headers
88
#include "Multimedia6PluginsDeployer.h"
99

1010
using namespace linuxdeploy::plugin::qt;
11-
using namespace linuxdeploy::core::log;
11+
using namespace linuxdeploy::log;
1212

1313
namespace fs = std::filesystem;
1414

src/deployers/PlatformPluginsDeployer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
#include <filesystem>
33

44
// library headers
5-
#include <linuxdeploy/core/log.h>
5+
#include <linuxdeploy/log/log.h>
66
#include <linuxdeploy/util/util.h>
77

88
// local headers
99
#include "PlatformPluginsDeployer.h"
1010

1111
using namespace linuxdeploy::plugin::qt;
12-
using namespace linuxdeploy::core::log;
12+
using namespace linuxdeploy::log;
1313

1414
namespace fs = std::filesystem;
1515

src/deployers/PositioningPluginsDeployer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
#include <filesystem>
33

44
// library headers
5-
#include <linuxdeploy/core/log.h>
5+
#include <linuxdeploy/log/log.h>
66

77
// local headers
88
#include "PositioningPluginsDeployer.h"
99

1010
using namespace linuxdeploy::plugin::qt;
11-
using namespace linuxdeploy::core::log;
11+
using namespace linuxdeploy::log;
1212

1313
namespace fs = std::filesystem;
1414

src/deployers/PrintSupportPluginsDeployer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
#include <filesystem>
33

44
// library headers
5-
#include <linuxdeploy/core/log.h>
5+
#include <linuxdeploy/log/log.h>
66

77
// local headers
88
#include "PrintSupportPluginsDeployer.h"
99

1010
using namespace linuxdeploy::plugin::qt;
11-
using namespace linuxdeploy::core::log;
11+
using namespace linuxdeploy::log;
1212

1313
namespace fs = std::filesystem;
1414

src/deployers/Qt3DPluginsDeployer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
#include <filesystem>
33

44
// library headers
5-
#include <linuxdeploy/core/log.h>
5+
#include <linuxdeploy/log/log.h>
66

77
// local headers
88
#include "Qt3DPluginsDeployer.h"
99

1010
using namespace linuxdeploy::plugin::qt;
11-
using namespace linuxdeploy::core::log;
11+
using namespace linuxdeploy::log;
1212

1313
namespace fs = std::filesystem;
1414

0 commit comments

Comments
 (0)