author | llornkcor <llornkcor> | 2003-04-22 19:38:51 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2003-04-22 19:38:51 (UTC) |
commit | fc4a2188381ba68060eac61fe18ab34a87742635 (patch) (unidiff) | |
tree | dfe37b48935edaa04f6fd0c930e1ae2a2e3872fe | |
parent | 6504c09407f6cdf0e131205e0337ba6bc7046182 (diff) | |
download | opie-fc4a2188381ba68060eac61fe18ab34a87742635.zip opie-fc4a2188381ba68060eac61fe18ab34a87742635.tar.gz opie-fc4a2188381ba68060eac61fe18ab34a87742635.tar.bz2 |
fix
-rw-r--r-- | noncore/apps/advancedfm/advancedfmData.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/noncore/apps/advancedfm/advancedfmData.cpp b/noncore/apps/advancedfm/advancedfmData.cpp index eb2bcd8..d0de442 100644 --- a/noncore/apps/advancedfm/advancedfmData.cpp +++ b/noncore/apps/advancedfm/advancedfmData.cpp | |||
@@ -32,18 +32,17 @@ void AdvancedFm::init() { | |||
32 | qDebug("<<<<<<<<<<<<<<<<<<<<<<<< OPIE!!!"); | 32 | qDebug("<<<<<<<<<<<<<<<<<<<<<<<< OPIE!!!"); |
33 | #endif | 33 | #endif |
34 | setCaption( tr( "AdvancedFm" ) ); | 34 | setCaption( tr( "AdvancedFm" ) ); |
35 | 35 | ||
36 | QVBoxLayout *layout = new QVBoxLayout( this ); | 36 | QVBoxLayout *layout = new QVBoxLayout( this ); |
37 | layout->setSpacing( 2); | 37 | layout->setSpacing( 2); |
38 | layout->setMargin( 2); | 38 | layout->setMargin( 2); |
39 | 39 | ||
40 | 40 | QMenuBar *menuBar = new QMenuBar(this); | |
41 | QMenuBar *menuBar = new QMenuBar(this); | ||
42 | fileMenu = new QPopupMenu( this ); | 41 | fileMenu = new QPopupMenu( this ); |
43 | viewMenu = new QPopupMenu( this ); | 42 | viewMenu = new QPopupMenu( this ); |
44 | // customDirMenu = new QPopupMenu( this ); | 43 | // customDirMenu = new QPopupMenu( this ); |
45 | 44 | ||
46 | layout->addWidget( menuBar ); | 45 | layout->addWidget( menuBar ); |
47 | 46 | ||
48 | menuBar->insertItem( tr( "File" ), fileMenu); | 47 | menuBar->insertItem( tr( "File" ), fileMenu); |
49 | menuBar->insertItem( tr( "View" ), viewMenu); | 48 | menuBar->insertItem( tr( "View" ), viewMenu); |
@@ -105,26 +104,26 @@ void AdvancedFm::init() { | |||
105 | s_removeBookmark = tr("Remove Current Directory from Bookmarks"); | 104 | s_removeBookmark = tr("Remove Current Directory from Bookmarks"); |
106 | 105 | ||
107 | // menuButton->insertItem(""); | 106 | // menuButton->insertItem(""); |
108 | 107 | ||
109 | // customDirMenu->insertItem(tr("Add This Directory")); | 108 | // customDirMenu->insertItem(tr("Add This Directory")); |
110 | // customDirMenu->insertItem(tr("Remove This Directory")); | 109 | // customDirMenu->insertItem(tr("Remove This Directory")); |
111 | // customDirMenu->insertSeparator(); | 110 | // customDirMenu->insertSeparator(); |
112 | 111 | ||
113 | customDirsToMenu(); | ||
114 | |||
115 | menuButton = new MenuButton( lineBox ); | 112 | menuButton = new MenuButton( lineBox ); |
116 | 113 | ||
117 | menuButton->setUseLabel(false); | 114 | menuButton->setUseLabel(false); |
118 | menuButton->setMaximumWidth( 20 ); | 115 | menuButton->setMaximumWidth( 20 ); |
119 | menuButton->insertItem( s_addBookmark); | 116 | menuButton->insertItem( s_addBookmark); |
120 | menuButton->insertItem( s_removeBookmark); | 117 | menuButton->insertItem( s_removeBookmark); |
121 | menuButton->insertSeparator(); | 118 | menuButton->insertSeparator(); |
122 | 119 | ||
120 | customDirsToMenu(); | ||
121 | |||
123 | currentPathCombo = new QComboBox( FALSE, lineBox, "currentPathCombo" ); | 122 | currentPathCombo = new QComboBox( FALSE, lineBox, "currentPathCombo" ); |
124 | currentPathCombo->setEditable(TRUE); | 123 | currentPathCombo->setEditable(TRUE); |
125 | currentPathCombo->lineEdit()->setText( currentDir.canonicalPath()); | 124 | currentPathCombo->lineEdit()->setText( currentDir.canonicalPath()); |
126 | 125 | ||
127 | layout->addWidget( lineBox ); | 126 | layout->addWidget( lineBox ); |
128 | 127 | ||
129 | 128 | ||
130 | TabWidget = new OTabWidget( this, "TabWidget",/* OTabWidget::Global | */OTabWidget::IconTab); | 129 | TabWidget = new OTabWidget( this, "TabWidget",/* OTabWidget::Global | */OTabWidget::IconTab); |