summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_strftime.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-09-16 21:31:33 (GMT)
committerFred Drake <fdrake@acm.org>2000-09-16 21:31:33 (GMT)
commit1cca9e29f97b4778e07e4a8948e0a677334f8560 (patch)
tree843dc22ecb1463f5e37cb065d8cefa30eb577f98 /Lib/test/test_strftime.py
parent7be440da1a1789c997092d077d928f8685fa920f (diff)
downloadcpython-1cca9e29f97b4778e07e4a8948e0a677334f8560.zip
cpython-1cca9e29f97b4778e07e4a8948e0a677334f8560.tar.gz
cpython-1cca9e29f97b4778e07e4a8948e0a677334f8560.tar.bz2
Make the <body> tag match those of the generated HTML; rely on the style
sheet instead of encoding anything there.
Diffstat (limited to 'Lib/test/test_strftime.py')
0 files changed, 0 insertions, 0 deletions
class="hl com">** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** ** ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ //! [0] void LineEdit::contextMenuEvent(QContextMenuEvent *event) { QMenu *menu = createStandardContextMenu(); menu->addAction(tr("My Menu Item")); //... menu->exec(event->globalPos()); delete menu; } //! [0]