Skip to content

Commit

Permalink
Case sensitivity wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
AKMaily committed Oct 24, 2024
1 parent 7cce4c0 commit b4ab1d3
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ include(cmake_helpers/FindOrFetch.cmake)

add_executable(OmniView
src/main.cpp
src/loadFiles.cpp
src/loadingFiles.cpp
src/mainWindow.cpp
src/generateTrainingData.cpp
src/info_popup.cpp
Expand Down
2 changes: 0 additions & 2 deletions src/handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -458,8 +458,6 @@ void addPlotFromFile(externData &dataObj) {
std::cerr << "Error: To much units provided for axis labels." << std::endl;
return;
}
std::cout << dataObj.units[0].c_str() << std::endl;
std::cout << dataObj.units[1].c_str() << std::endl;

ImPlot::SetupAxis(ImAxis_X1, dataObj.units[0].c_str());
ImPlot::SetupAxis(ImAxis_Y1, dataObj.units[1].c_str());
Expand Down
4 changes: 2 additions & 2 deletions src/LoadFiles.cpp → src/loadingFiles.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "loadFiles.hpp"
#include "loadingFiles.hpp"

namespace fs = std::filesystem;

Expand Down Expand Up @@ -180,7 +180,7 @@ void filesList(std::vector<externData> &dataObjects) { // Show list of files in
}

ImGui::SameLine();
ImGui::TextUnformatted(obj.filepath.c_str());
ImGui::TextUnformatted(obj.filepath.string().c_str());
ImGui::SameLine();

//Deleting Loaded Data
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/mainWindow.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include <nlohmann/json.hpp>
#include <nlohmann/json_fwd.hpp>
#include <mutex>
#include "loadFiles.hpp"
#include "loadingFiles.hpp"

class mainWindow{
public:
Expand Down

0 comments on commit b4ab1d3

Please sign in to comment.