Changeset 1173 in ntrip
- Timestamp:
- Oct 27, 2008, 4:20:52 PM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bnccaster.cpp
r1171 r1173 193 193 194 194 getThread->start(); 195 196 emit newGetThread(getThread); 195 197 } 196 198 -
trunk/BNC/bnccaster.h
r1170 r1173 48 48 49 49 signals: 50 void newGetThread(bncGetThread* thread); 50 51 void getThreadErrors(); 51 52 void newMessage(QByteArray msg); -
trunk/BNC/bncwindow.cpp
r1172 r1173 681 681 this, SLOT(slotGetThreadErrors())); 682 682 683 connect (_caster, SIGNAL(newGetThread(bncGetThread*)), 684 this, SLOT(slotNewGetThread(bncGetThread*))); 685 683 686 _caster->slotReadMountpoints(); 684 687 … … 779 782 // Whats This Help 780 783 void bncWindow::slotWhatsThis() { 781 QWhatsThis::enterWhatsThisMode(); 782 } 783 784 QWhatsThis::enterWhatsThisMode(); 785 } 786 787 // 788 //////////////////////////////////////////////////////////////////////////// 789 void bncWindow::slotNewGetThread(bncGetThread* thread) { 790 // connect(thread, SIGNAL(newBytes(QByteArray, double)), 791 // (bncTableItem*) _mountPointsTable->item(iRow, 6), 792 // SLOT(slotNewBytes(QByteArray, double))); 793 } 794 795 // 796 //////////////////////////////////////////////////////////////////////////// 784 797 void bncWindow::CreateMenu() { 785 798 // Create Menus … … 798 811 } 799 812 813 // 814 //////////////////////////////////////////////////////////////////////////// 800 815 void bncWindow::AddToolbar() { 801 816 // Tool (Command) Bar … … 812 827 } 813 828 829 // 830 //////////////////////////////////////////////////////////////////////////// 814 831 bncAboutDlg::bncAboutDlg(QWidget* parent) : 815 832 QDialog(parent) { … … 838 855 } 839 856 857 // 858 //////////////////////////////////////////////////////////////////////////// 840 859 bncAboutDlg::~bncAboutDlg() { 841 860 }; 842 861 862 // 863 //////////////////////////////////////////////////////////////////////////// 843 864 bncFlowchartDlg::bncFlowchartDlg(QWidget* parent) : 844 865 QDialog(parent) { … … 859 880 } 860 881 882 // 883 //////////////////////////////////////////////////////////////////////////// 861 884 bncFlowchartDlg::~bncFlowchartDlg() { 862 885 }; -
trunk/BNC/bncwindow.h
r1172 r1173 58 58 59 59 public slots: 60 void slotNewGetThread(bncGetThread* thread); 60 61 61 62 private slots:
Note:
See TracChangeset
for help on using the changeset viewer.