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