mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
31 lines
650 B
C++
31 lines
650 B
C++
|
/* This file is part of
|
||
|
* ======================================================
|
||
|
*
|
||
|
* LyX, The Document Processor
|
||
|
*
|
||
|
* Copyright 1995 Matthias Ettrich
|
||
|
* Copyright 1995-2001 The LyX Team.
|
||
|
*
|
||
|
* ======================================================
|
||
|
*
|
||
|
* \file Dialogs.C
|
||
|
* \author Angus Leeming <a.leeming@ic.ac.uk>
|
||
|
*
|
||
|
* Methods common to all frontends' Dialogs that should not be inline
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
|
||
|
#ifdef __GNUG__
|
||
|
#pragma implementation
|
||
|
#endif
|
||
|
|
||
|
#include "Dialogs.h"
|
||
|
#include "support/LAssert.h"
|
||
|
|
||
|
void Dialogs::add(DialogBase * ptr)
|
||
|
{
|
||
|
lyx::Assert(ptr);
|
||
|
dialogs_.push_back(db_ptr(ptr));
|
||
|
}
|