aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2012-08-21 03:07:39 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2012-08-21 03:07:39 +0000
commitd058b7f8494b1e485d3341966edbe121824be797 (patch)
tree415cba6790f88c04b9014107a9671e3c38b9167b
parent6f59871075078fae1f69788340400d68b1711295 (diff)
Fix compilation.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44602 f5534014-38df-0310-8fa8-9805f1628bb7
-rw-r--r--ui/qt/main_window.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/qt/main_window.cpp b/ui/qt/main_window.cpp
index 1067ea6e10..d290b12f44 100644
--- a/ui/qt/main_window.cpp
+++ b/ui/qt/main_window.cpp
@@ -106,9 +106,9 @@ MainWindow::MainWindow(QWidget *parent) :
"}"
);
#if defined(Q_WS_MAC)
- main_ui_->goToLineEdit.setAttribute(Qt::WA_MacSmallSize, true);
- main_ui_->goToGo.setAttribute(Qt::WA_MacSmallSize, true);
- main_ui_->goToCancel.setAttribute(Qt::WA_MacSmallSize, true);
+ main_ui_->goToLineEdit->setAttribute(Qt::WA_MacSmallSize, true);
+ main_ui_->goToGo->setAttribute(Qt::WA_MacSmallSize, true);
+ main_ui_->goToCancel->setAttribute(Qt::WA_MacSmallSize, true);
#endif
splitter_v_ = new QSplitter(main_ui_->mainStack);