Titleblock properties rename properties %loc to %locmach

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4626 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
scorpio810
2016-08-12 11:32:56 +00:00
parent 1f7bc1eb3b
commit 928c2938e1
8 changed files with 19 additions and 19 deletions

View File

@@ -97,8 +97,8 @@ class BorderTitleBlock : public QObject
QString folio() const { return(btb_folio_); }
/// @return the value of the title block "Machine" field
QString machine() const { return(btb_machine_); }
/// @return the value of the title block "Folio" field
QString loc() const { return(btb_loc_); }
/// @return the value of the title block "Locmach" field
QString locmach() const { return(btb_locmach_); }
/// @return the value of the revision index block "Folio" field
QString indexrev() const { return(btb_indexrev_); }
@@ -154,7 +154,7 @@ class BorderTitleBlock : public QObject
void setFolioData(int, int, QString = NULL, const DiagramContext & = DiagramContext());
/// @param author the new value of the "File" field
void setMachine(const QString &machine) { btb_machine_ = machine; }
void setLoc(const QString &loc) { btb_loc_ = loc; }
void setLocMach(const QString &locmach) { btb_locmach_ = locmach; }
void setIndicerev(const QString &indexrev){ btb_indexrev_ = indexrev; }
void setFileName(const QString &filename) { btb_filename_ = filename; }
/// @param author the new value of the "Version" field
@@ -236,7 +236,7 @@ class BorderTitleBlock : public QObject
QString btb_title_;
QString btb_folio_;
QString btb_machine_;
QString btb_loc_;
QString btb_locmach_;
QString btb_indexrev_;
QString btb_final_folio_;
QString btb_auto_page_num_;