diff options
| author | cvs2svn <cvs2svn@FreeBSD.org> | 2004-10-29 09:06:05 +0000 |
|---|---|---|
| committer | cvs2svn <cvs2svn@FreeBSD.org> | 2004-10-29 09:06:05 +0000 |
| commit | 3add449a170be706377b66bee46af25633bc945c (patch) | |
| tree | 7415df14a37624ff0b24fd40bde079927a88c28a /print/lyx14/files/patch-src::frontends::controllers::ControlDialog.tmpl | |
| parent | 975af646f278430e563b72219a2c3055b211eb1a (diff) | |
Diffstat (limited to 'print/lyx14/files/patch-src::frontends::controllers::ControlDialog.tmpl')
| -rw-r--r-- | print/lyx14/files/patch-src::frontends::controllers::ControlDialog.tmpl | 85 |
1 files changed, 0 insertions, 85 deletions
diff --git a/print/lyx14/files/patch-src::frontends::controllers::ControlDialog.tmpl b/print/lyx14/files/patch-src::frontends::controllers::ControlDialog.tmpl deleted file mode 100644 index e805b47a3519..000000000000 --- a/print/lyx14/files/patch-src::frontends::controllers::ControlDialog.tmpl +++ /dev/null @@ -1,85 +0,0 @@ -$NetBSD$ - ---- src/frontends/controllers/ControlDialog.tmpl.orig 2004-05-29 04:23:23.000000000 -0600 -+++ src/frontends/controllers/ControlDialog.tmpl -@@ -4,7 +4,7 @@ - * This file is part of LyX, the document processor. - * Licence details can be found in the file COPYING. - * -- * \author Angus Leeming -+ * \author Angus Leeming - * - * Full author contact details are available in file CREDITS - * -@@ -27,54 +27,56 @@ ControlDialog<Base>::ControlDialog(LyXVi - template <class Base> - void ControlDialog<Base>::show() - { -- if (isBufferDependent() && !bufferIsAvailable()) -+ if (this->isBufferDependent() && !this->bufferIsAvailable()) - return; - -- connect(); -+ this->connect(); - - if (!dialog_built_) { -- view().build(); -+ this->view().build(); - dialog_built_ = true; - } - - setParams(); -- if (emergency_exit_) { -+ if (this->emergency_exit_) { - hide(); - return; - } - -- bc().readOnly(bufferIsReadonly()); -- view().show(); -+ this->bc().readOnly(this->bufferIsReadonly()); -+ this->view().show(); - - // The widgets may not be valid, so refresh the button controller -- bc().refresh(); -+ this->bc().refresh(); - } - -+ - template <class Base> - void ControlDialog<Base>::update() - { -- if (isBufferDependent() && !bufferIsAvailable()) -+ if (this->isBufferDependent() && !this->bufferIsAvailable()) - return; - - setParams(); -- if (emergency_exit_) { -+ if (this->emergency_exit_) { - hide(); - return; - } - -- bc().readOnly(bufferIsReadonly()); -- view().update(); -+ this->bc().readOnly(this->bufferIsReadonly()); -+ this->view().update(); - - // The widgets may not be valid, so refresh the button controller -- bc().refresh(); -+ this->bc().refresh(); - } - -+ - template <class Base> - void ControlDialog<Base>::hide() - { -- emergency_exit_ = false; -+ this->emergency_exit_ = false; - clearParams(); - -- disconnect(); -- view().hide(); -+ this->disconnect(); -+ this->view().hide(); - } |
