diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-03-13 17:16:18 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-03-16 18:07:32 +0100 |
commit | 71340a99dc4bf43ea110a76c0ed3bbccd8989f22 (patch) | |
tree | 0b1943626ca9d6262a740a613d1b8496dee717ef /src/qregisters.h | |
parent | 1c4c0acaeb284c5b65c6e117fdf2d2aa3c4dbdcb (diff) | |
download | sciteco-71340a99dc4bf43ea110a76c0ed3bbccd8989f22.tar.gz |
common parent state for all file-name-expecting commands: fixes EM tab-completions
* StateExpectFile adds no functionality (currently), but is useful for checking state types
Diffstat (limited to 'src/qregisters.h')
-rw-r--r-- | src/qregisters.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qregisters.h b/src/qregisters.h index 58451ed..73ceada 100644 --- a/src/qregisters.h +++ b/src/qregisters.h @@ -328,7 +328,7 @@ private: State *got_register(QRegister ®) throw (Error); }; -class StateLoadQReg : public StateExpectString { +class StateLoadQReg : public StateExpectFile { private: State *done(const gchar *str) throw (Error); }; @@ -380,7 +380,7 @@ private: State *got_register(QRegister ®) throw (Error, ReplaceCmdline); }; -class StateMacroFile : public StateExpectString { +class StateMacroFile : public StateExpectFile { private: State *done(const gchar *str) throw (Error); }; |