eepp: Pump version.

ecode: Added version number and Help menu. Moved all project source files into the "ecode" namespace.
This commit is contained in:
Martín Lucas Golini
2022-06-12 02:51:16 -03:00
parent 6ffda35039
commit 5280ac40ac
36 changed files with 286 additions and 59 deletions

View File

@@ -1,6 +1,8 @@
#include "docsearchcontroller.hpp"
#include "ecode.hpp"
namespace ecode {
DocSearchController::DocSearchController( UICodeEditorSplitter* editorSplitter, App* app ) :
mEditorSplitter( editorSplitter ), mApp( app ) {}
@@ -369,3 +371,5 @@ SearchBarConfig DocSearchController::getSearchBarConfig() const {
searchBarConfig.escapeSequence = escapeSequenceChk->isChecked();
return searchBarConfig;
}
}