Renamed docdetails file to itemdetails
This commit is contained in:
+2
-2
@@ -5,12 +5,12 @@ from nw.gui.build import GuiBuildNovel
|
||||
from nw.gui.docbars import GuiDocTitleBar
|
||||
from nw.gui.docbars import GuiNoticeBar
|
||||
from nw.gui.docbars import GuiSearchBar
|
||||
from nw.gui.docdetails import GuiDocDetails
|
||||
from nw.gui.doceditor import GuiDocEditor
|
||||
from nw.gui.docmerge import GuiDocMerge
|
||||
from nw.gui.docsplit import GuiDocSplit
|
||||
from nw.gui.doctree import GuiDocTree
|
||||
from nw.gui.docviewer import GuiDocViewer
|
||||
from nw.gui.itemdetails import GuiItemDetails
|
||||
from nw.gui.itemeditor import GuiItemEditor
|
||||
from nw.gui.mainmenu import GuiMainMenu
|
||||
from nw.gui.outline import GuiProjectOutline
|
||||
@@ -29,12 +29,12 @@ __all__ = [
|
||||
"GuiDocTitleBar",
|
||||
"GuiNoticeBar",
|
||||
"GuiSearchBar",
|
||||
"GuiDocDetails",
|
||||
"GuiDocEditor",
|
||||
"GuiDocMerge",
|
||||
"GuiDocSplit",
|
||||
"GuiDocTree",
|
||||
"GuiDocViewer",
|
||||
"GuiItemDetails",
|
||||
"GuiItemEditor",
|
||||
"GuiMainMenu",
|
||||
"GuiProjectOutline",
|
||||
|
||||
@@ -38,12 +38,12 @@ from nw.constants import (
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
class GuiDocDetails(QFrame):
|
||||
class GuiItemDetails(QFrame):
|
||||
|
||||
def __init__(self, theParent, theProject):
|
||||
QFrame.__init__(self, theParent)
|
||||
|
||||
logger.debug("Initialising DocDetails ...")
|
||||
logger.debug("Initialising GuiItemDetails ...")
|
||||
self.mainConf = nw.CONFIG
|
||||
self.theParent = theParent
|
||||
self.theProject = theProject
|
||||
@@ -182,7 +182,7 @@ class GuiDocDetails(QFrame):
|
||||
self.mainBox.setColumnMinimumWidth(1, flagWidth)
|
||||
self.mainBox.setColumnMinimumWidth(4, countWidth)
|
||||
|
||||
logger.debug("DocDetails initialisation complete")
|
||||
logger.debug("GuiItemDetails initialisation complete")
|
||||
|
||||
return
|
||||
|
||||
@@ -262,4 +262,4 @@ class GuiDocDetails(QFrame):
|
||||
|
||||
return
|
||||
|
||||
# END Class GuiDocDetails
|
||||
# END Class GuiItemDetails
|
||||
Reference in New Issue
Block a user