bad38031dd
2008/04/30 15:50:07 pb 1.3.998.2: RESYNC: (1.3-1.4); FILE MERGED 2008/03/06 09:28:21 cd 1.3.998.1: #i86384# Remove unused code from desktop
23 lines
448 B
C++
23 lines
448 B
C++
#include <vcl/dialog.hxx>
|
|
#include <vcl/fixed.hxx>
|
|
#ifndef _SV_BUTTON_HXX
|
|
#include <vcl/button.hxx>
|
|
#endif
|
|
|
|
namespace desktop
|
|
{
|
|
void displayCmdlineHelp( void );
|
|
#ifndef UNX
|
|
class CmdlineHelpDialog : public ModalDialog
|
|
{
|
|
public:
|
|
CmdlineHelpDialog ( void );
|
|
|
|
FixedText m_ftHead;
|
|
FixedText m_ftLeft;
|
|
FixedText m_ftRight;
|
|
FixedText m_ftBottom;
|
|
OKButton m_btOk;
|
|
};
|
|
#endif
|
|
}
|