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/ring.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/ring.h')
-rw-r--r-- | src/ring.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -215,7 +215,7 @@ public: * Command states */ -class StateEditFile : public StateExpectString { +class StateEditFile : public StateExpectFile { private: bool allowFilename; @@ -226,7 +226,7 @@ private: State *done(const gchar *str) throw (Error); }; -class StateSaveFile : public StateExpectString { +class StateSaveFile : public StateExpectFile { private: State *done(const gchar *str) throw (Error); }; |