Skip to content

Commit

Permalink
Hookup Save events
Browse files Browse the repository at this point in the history
  • Loading branch information
vdwtanner committed May 25, 2022
1 parent e63c05c commit 24b5253
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ColumnMode/Program.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1514,6 +1514,7 @@ void OnSave(WindowHandles windowHandles)

g_hasUnsavedChanges = false;
UpdateWindowTitle(windowHandles);
g_pluginManager.PF_OnSave_ALL(g_fileFullPath.c_str());
}

void OnSaveAs(WindowHandles windowHandles)
Expand Down Expand Up @@ -1554,6 +1555,7 @@ void OnSaveAs(WindowHandles windowHandles)
g_hasUnsavedChanges = false;

SetCurrentFileNameAndUpdateWindowTitle(windowHandles, ofn.lpstrFile);
g_pluginManager.PF_OnSaveAs_ALL(ofn.lpstrFile);
}
}

Expand Down

0 comments on commit 24b5253

Please sign in to comment.