diff options
author | Daniel Burrows <dburrows@debian.org> | 2008-11-16 21:43:12 -0800 |
---|---|---|
committer | Daniel Burrows <dburrows@debian.org> | 2008-11-16 21:43:12 -0800 |
commit | fbbd28dafd605ee62632515d6c2d7f5825f7c65c (patch) | |
tree | 567663857930aad0053e1d35651fabe4b6a0b4af /src | |
parent | 45e3fb6f3e732429e6d21cbed56688c8b83ea0ac (diff) | |
download | aptitude-fbbd28dafd605ee62632515d6c2d7f5825f7c65c.tar.gz |
Rename the DpkgTerminal tab type to DpkgTerminalTabType.
I'm about to introduce a class named DpkgTerminal, and this avoids name clashes.
Diffstat (limited to 'src')
-rw-r--r-- | src/gtk/gui.cc | 2 | ||||
-rw-r--r-- | src/gtk/tab.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gtk/gui.cc b/src/gtk/gui.cc index b711b361..345d5713 100644 --- a/src/gtk/gui.cc +++ b/src/gtk/gui.cc @@ -248,7 +248,7 @@ namespace gui * in another tab later. See DpkgTerminalNotification. */ DpkgTerminalTab(Gtk::Widget *term) - : Tab(DpkgTerminal, "Applying changes", + : Tab(DpkgTerminalTabType, "Applying changes", Gnome::Glade::Xml::create(glade_main_file, "main_apply_changes_scrolledwindow"), "main_apply_changes_scrolledwindow") { diff --git a/src/gtk/tab.h b/src/gtk/tab.h index b8756fdc..6dfb8bb2 100644 --- a/src/gtk/tab.h +++ b/src/gtk/tab.h @@ -49,7 +49,7 @@ namespace gui /** \brief A tab that shows the terminal output produced by a dpkg * invocation. */ - DpkgTerminal, + DpkgTerminalTabType, Error }; |