/*
* Authors:
* Carl Hetherington <inkscape@carlh.net>
* Derek P. Moore <derekm@hackunix.org>
* Bryce Harrington <bryce@bryceharrington.org>
*
* Copyright (C) 2004 Carl Hetherington
*
* Released under GNU GPL. Read the file 'COPYING' for more information.
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include "random.h"
namespace Inkscape {
namespace UI {
namespace Widget {
bool mnemonic)
{
startseed = 0;
}
unsigned digits,
bool mnemonic)
{
startseed = 0;
}
#if WITH_GTKMM_3_0
#else
#endif
unsigned digits,
bool mnemonic)
{
startseed = 0;
}
{
return startseed;
}
{
}
{
pButton->set_tooltip_text(_("Reseed the random number generator; this creates a different sequence of random numbers."));
}
void
{
startseed = g_random_int();
}
} // namespace Widget
} // namespace UI
} // namespace Inkscape
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :