File tree 5 files changed +15
-15
lines changed
5 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -33,10 +33,10 @@ target_sources(Qldd PRIVATE ${SOURCES})
33
33
target_link_libraries (Qldd PRIVATE Qt5::Widgets)
34
34
35
35
install (TARGETS Qldd
36
- RUNTIME
37
- DESTINATION bin
36
+ RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX} /bin
37
+ BUNDLE DESTINATION ${CMAKE_INSTALL_PREFIX} / bin
38
38
COMPONENT DependencyViewer)
39
39
40
40
install (FILES ${CMAKE_SOURCE_DIR} /nemo/actions/dependency-viewer.nemo_action
41
41
DESTINATION share/nemo/actions
42
- COMPONENT nemo-integration)
42
+ COMPONENT nemo-integration)
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ void MainWindow::reset(const QString &fileName) {
59
59
ui->lineEditFileName ->setText (qldd->getBinaryName ());
60
60
ui->lineEditFileSize ->setText (qldd->getStringFileSize () + " ( " + QString::number (qldd->getFileSize ()) + " bytes )" );
61
61
ui->lineEditTimeAccess ->setText (qldd->getAccessTime ());
62
- ui->lineEditTimeStatus ->setText (qldd->getStatusTime ());
62
+ ui->lineEditTimeStatus ->setText (qldd->getCreatedTime ());
63
63
ui->lineEditTimeModify ->setText (qldd->getModifyTime ());
64
64
65
65
ui->lineEditOwner ->setText (qldd->getOwnerName ());
Original file line number Diff line number Diff line change 138
138
</layout >
139
139
</item >
140
140
<item >
141
- <layout class =" QHBoxLayout" name =" horizontalLayout_3 " >
141
+ <layout class =" QHBoxLayout" name =" horizontalLayout_4 " >
142
142
<item >
143
- <widget class =" QLabel" name =" labelTimeStatus " >
143
+ <widget class =" QLabel" name =" labelTimeAccess " >
144
144
<property name =" minimumSize" >
145
145
<size >
146
146
<width >90</width >
147
147
<height >0</height >
148
148
</size >
149
149
</property >
150
150
<property name =" text" >
151
- <string >Access Time</string >
151
+ <string >Created Time</string >
152
152
</property >
153
153
</widget >
154
154
</item >
162
162
</layout >
163
163
</item >
164
164
<item >
165
- <layout class =" QHBoxLayout" name =" horizontalLayout_4 " >
165
+ <layout class =" QHBoxLayout" name =" horizontalLayout_3 " >
166
166
<item >
167
- <widget class =" QLabel" name =" labelTimeAccess " >
167
+ <widget class =" QLabel" name =" labelTimeStatus " >
168
168
<property name =" minimumSize" >
169
169
<size >
170
170
<width >90</width >
171
171
<height >0</height >
172
172
</size >
173
173
</property >
174
174
<property name =" text" >
175
- <string >Status Time</string >
175
+ <string >Access Time</string >
176
176
</property >
177
177
</widget >
178
178
</item >
595
595
<x >0</x >
596
596
<y >0</y >
597
597
<width >725</width >
598
- <height >21 </height >
598
+ <height >22 </height >
599
599
</rect >
600
600
</property >
601
601
</widget >
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ QLdd::QLdd(QString fileName, QString lddDirPath)
55
55
_otherMod.write = _fileInfo.permission (QFile::WriteOther);
56
56
_otherMod.execute = _fileInfo.permission (QFile::ExeOther);
57
57
58
- _tmStatus = _fileInfo.created ().toString (Qt::RFC2822Date);
58
+ _tmCreate = _fileInfo.created ().toString (Qt::RFC2822Date);
59
59
_tmAccess = _fileInfo.lastRead ().toString (Qt::RFC2822Date);
60
60
_tmModify = _fileInfo.lastModified ().toString (Qt::RFC2822Date);
61
61
@@ -182,7 +182,7 @@ QString QLdd::getPathOfBinary() { return _fileInfo.absolutePath(); }
182
182
183
183
QString QLdd::getBinaryName () { return _fileInfo.fileName (); }
184
184
185
- const QString &QLdd::getStatusTime () { return _tmStatus ; }
185
+ const QString &QLdd::getCreatedTime () { return _tmCreate ; }
186
186
187
187
const QString &QLdd::getModifyTime () { return _tmModify; }
188
188
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ class QLdd {
22
22
void fillExportTable (QListWidget &listWidget);
23
23
QString getPathOfBinary ();
24
24
QString getBinaryName ();
25
- const QString &getStatusTime ();
25
+ const QString &getCreatedTime ();
26
26
const QString &getAccessTime ();
27
27
const QString &getModifyTime ();
28
28
QString getInfo ();
@@ -45,7 +45,7 @@ class QLdd {
45
45
QString _fileName;
46
46
QFileInfo _fileInfo;
47
47
bool _link;
48
- QString _tmStatus ;
48
+ QString _tmCreate ;
49
49
QString _tmAccess;
50
50
QString _tmModify;
51
51
QString _lddDirPath;
You can’t perform that action at this time.
0 commit comments