Repair mimetype icon usage, part 1. The following are not fully verified in source as of this commit due to ubiquity: info, unknown

pull/1/head
Timothy Pearson 10 years ago
parent 9226d5bf32
commit 31aade2915

@ -38,7 +38,7 @@ KEducaPrefs::~KEducaPrefs(){}
/** Set page general */
void KEducaPrefs::setPageGeneral()
{
TQVBox *mainFrame = addVBoxPage( i18n("Miscellaneous"), i18n("Various Settings"), DesktopIcon("application-vnd.tde.misc"));
TQVBox *mainFrame = addVBoxPage( i18n("Miscellaneous"), i18n("Various Settings"), DesktopIcon("misc"));

@ -670,17 +670,17 @@ void SkyMap::mousePressEvent( TQMouseEvent *e ) {
if ( clickedObject() ) {
setClickedPoint( clickedObject() );
if ( e->button() == Qt::RightButton ) {
clickedObject()->showPopupMenu( pmenu, TQCursor::pos() );
}
if ( ksw && e->button() == Qt::LeftButton ) {
ksw->statusBar()->changeItem( clickedObject()->translatedLongName(), 0 );
}
} else {
//Empty sky selected. If left-click, display "nothing" in the status bar.
//If right-click, open "empty" popup menu.
//If right-click, open "empty" popup menu.
setClickedObject( NULL );
switch (e->button()) {
@ -692,7 +692,7 @@ void SkyMap::mousePressEvent( TQMouseEvent *e ) {
SkyObject *nullObj = new SkyObject( SkyObject::TYPE_UNKNOWN, clickedPoint()->ra()->Hours(), clickedPoint()->dec()->Degrees() );
pmenu->createEmptyMenu( nullObj );
delete nullObj;
pmenu->popup( TQCursor::pos() );
break;
}

Loading…
Cancel
Save