aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-04-12 13:02:12 (GMT)
committerfluxgen <fluxgen>2002-04-12 13:02:12 (GMT)
commitc25795a91051c3dbaee4e5d2d891f1a9c5ea2060 (patch)
tree549cce43a8f9ca4c244beef03bda2e29b85a2d25
parente82cf2fae58ad736cac43775ed137b5054ffed7d (diff)
downloadfluxbox_pavel-c25795a91051c3dbaee4e5d2d891f1a9c5ea2060.zip
fluxbox_pavel-c25795a91051c3dbaee4e5d2d891f1a9c5ea2060.tar.bz2
typedef ScreenList
-rw-r--r--src/fluxbox.hh5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/fluxbox.hh b/src/fluxbox.hh
index c73429a..b3f1370 100644
--- a/src/fluxbox.hh
+++ b/src/fluxbox.hh
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: fluxbox.hh,v 1.15 2002/04/09 12:09:03 cout Exp $ 25// $Id: fluxbox.hh,v 1.16 2002/04/12 13:02:12 fluxgen Exp $
26 26
27#ifndef FLUXBOX_HH 27#ifndef FLUXBOX_HH
28#define FLUXBOX_HH 28#define FLUXBOX_HH
@@ -217,7 +217,8 @@ private:
217#endif // SLIT 217#endif // SLIT
218 218
219 std::list<MenuTimestamp *> menuTimestamps; 219 std::list<MenuTimestamp *> menuTimestamps;
220 std::list<BScreen *> screenList; 220 typedef std::list<BScreen *> ScreenList;
221 ScreenList screenList;
221 222
222 FluxboxWindow *focused_window, *masked_window; 223 FluxboxWindow *focused_window, *masked_window;
223 BTimer timer; 224 BTimer timer;