summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/showimg/showimg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/multimedia/showimg/showimg.cpp b/noncore/multimedia/showimg/showimg.cpp
index 7c43e11..24218e6 100644
--- a/noncore/multimedia/showimg/showimg.cpp
+++ b/noncore/multimedia/showimg/showimg.cpp
@@ -124,26 +124,26 @@ ImageViewer::ImageViewer( QWidget *parent, const char *name, int wFlags )
124 setToolBarsMovable( FALSE ); 124 setToolBarsMovable( FALSE );
125 125
126 toolBar = new QPEToolBar( this ); 126 toolBar = new QPEToolBar( this );
127 toolBar->setHorizontalStretchable( TRUE ); 127 toolBar->setHorizontalStretchable( TRUE );
128 128
129 menubar = new QPEMenuBar( toolBar ); 129 menubar = new QPEMenuBar( toolBar );
130 130
131 QStrList fmt = QImage::outputFormats(); 131 QStrList fmt = QImage::outputFormats();
132 132
133 QPopupMenu *edit = new QPopupMenu( menubar ); 133 QPopupMenu *edit = new QPopupMenu( menubar );
134 QPopupMenu *view = new QPopupMenu( menubar ); 134 QPopupMenu *view = new QPopupMenu( menubar );
135 135
136 menubar->insertItem( "Edit", edit ); 136 menubar->insertItem(tr("Edit"), edit );
137 menubar->insertItem( "View", view ); 137 menubar->insertItem(tr("View"), view );
138 138
139 edit->insertItem(tr("Horizontal flip"), this, SLOT(hFlip()), 0); 139 edit->insertItem(tr("Horizontal flip"), this, SLOT(hFlip()), 0);
140 edit->insertItem(tr("Vertical flip"), this, SLOT(vFlip()), 0); 140 edit->insertItem(tr("Vertical flip"), this, SLOT(vFlip()), 0);
141 141
142 stack = new QWidgetStack( this ); 142 stack = new QWidgetStack( this );
143 stack->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding ) ); 143 stack->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding ) );
144 setCentralWidget( stack ); 144 setCentralWidget( stack );
145 145
146 imagePanel = new ImagePane( stack ); 146 imagePanel = new ImagePane( stack );
147 connect(imagePanel, SIGNAL(clicked()), this, SLOT(normalView())); 147 connect(imagePanel, SIGNAL(clicked()), this, SLOT(normalView()));
148 148
149 fileSelector = new FileSelector("image/*", stack, "fs"); 149 fileSelector = new FileSelector("image/*", stack, "fs");