Renamed Session Log to Writing Statistics

This commit is contained in:
Veronica K. B. Olsen
2020-06-27 20:16:21 +02:00
parent c78c0c82b3
commit 7d6d0cc195
5 changed files with 45 additions and 44 deletions
+3 -3
View File
@@ -43,7 +43,7 @@ from nw.gui import (
GuiBuildNovel, GuiDocEditor, GuiDocMerge, GuiDocSplit, GuiDocViewDetails,
GuiDocViewer, GuiItemDetails, GuiItemEditor, GuiMainMenu, GuiMainStatus,
GuiOutline, GuiOutlineDetails, GuiPreferences, GuiProjectLoad, GuiTheme,
GuiProjectSettings, GuiProjectTree, GuiSessionLog
GuiProjectSettings, GuiProjectTree, GuiWritingStats
)
from nw.core import NWProject, NWDoc, NWIndex
from nw.constants import nwFiles, nwItemType, nwAlert
@@ -806,11 +806,11 @@ class GuiMain(QMainWindow):
dlgExport.exec_()
return True
def showSessionLogDialog(self):
def showWritingStatsDialog(self):
"""Open the session log dialog.
"""
if self.hasProject:
dlgTLine = GuiSessionLog(self, self.theProject)
dlgTLine = GuiWritingStats(self, self.theProject)
dlgTLine.exec_()
return True