diff options
author | Michael Vogt <mvo@debian.org> | 2014-02-14 19:40:58 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-02-14 19:40:58 +0100 |
commit | 16724b66fef02208ef050a36f732991941e39025 (patch) | |
tree | b73fde14ff6634370e5ca7bb0a95f3c28a60465a /apt-private/private-cacheset.h | |
parent | 889b0072a93a5afe9ffec93ab791d584c64754a0 (diff) |
add missing canNotFindFnmatch/showFnmatchSelection (for the next ABI break)
Diffstat (limited to 'apt-private/private-cacheset.h')
-rw-r--r-- | apt-private/private-cacheset.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apt-private/private-cacheset.h b/apt-private/private-cacheset.h index 15b531e9d..322b3be6b 100644 --- a/apt-private/private-cacheset.h +++ b/apt-private/private-cacheset.h @@ -101,6 +101,11 @@ public: Pkg.FullName(true).c_str(), pattern.c_str()); explicitlyNamed = false; } + virtual void showFnmatchSelection(pkgCache::PkgIterator const &Pkg, std::string const &pattern) { + ioprintf(out, _("Note, selecting '%s' for glob '%s'\n"), + Pkg.FullName(true).c_str(), pattern.c_str()); + explicitlyNamed = false; + } virtual void showRegExSelection(pkgCache::PkgIterator const &Pkg, std::string const &pattern) { ioprintf(out, _("Note, selecting '%s' for regex '%s'\n"), Pkg.FullName(true).c_str(), pattern.c_str()); |