[UPDATE] refactor Notepad_plus.cpp.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@614 f5eea248-9336-0410-98b8-ebc06183d4e3remotes/x64
parent
be8d467e91
commit
1bab772c37
File diff suppressed because it is too large
Load Diff
|
@ -238,10 +238,18 @@ public:
|
||||||
|
|
||||||
bool saveGUIParams();
|
bool saveGUIParams();
|
||||||
void saveDockingParams();
|
void saveDockingParams();
|
||||||
void saveUserDefineLangs();
|
void saveUserDefineLangs() {
|
||||||
void saveShortcuts();
|
if (ScintillaEditView::getUserDefineDlg()->isDirty())
|
||||||
|
(NppParameters::getInstance())->writeUserDefinedLang();
|
||||||
|
};
|
||||||
|
void saveShortcuts(){
|
||||||
|
NppParameters::getInstance()->writeShortcuts();
|
||||||
|
};
|
||||||
void saveSession(const Session & session);
|
void saveSession(const Session & session);
|
||||||
void saveFindHistory();
|
void saveFindHistory(){
|
||||||
|
_findReplaceDlg.saveFindHistory();
|
||||||
|
(NppParameters::getInstance())->writeFindHistory();
|
||||||
|
};
|
||||||
|
|
||||||
void getCurrentOpenedFiles(Session & session);
|
void getCurrentOpenedFiles(Session & session);
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -510,6 +510,10 @@
|
||||||
RelativePath="..\src\NppIO.cpp"
|
RelativePath="..\src\NppIO.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\src\NppLocalization.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\src\NppNotification.cpp"
|
RelativePath="..\src\NppNotification.cpp"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in New Issue