diff options
| author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-11-16 18:47:51 +0700 | 
|---|---|---|
| committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-11-16 18:47:51 +0700 | 
| commit | 5b388f581333d9d3eee1c993054354243be13183 (patch) | |
| tree | d6c0b35f4dd1ba4632099eb545a78c7b04c059d0 /qicclient | |
| parent | 9dcfaa143432bd515639870db80c2682cb26e144 (diff) | |
Reorder basket interface lines
Diffstat (limited to 'qicclient')
| -rw-r--r-- | qicclient/basket.hxx | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/qicclient/basket.hxx b/qicclient/basket.hxx index 101a6bc..ecd7a67 100644 --- a/qicclient/basket.hxx +++ b/qicclient/basket.hxx @@ -32,10 +32,10 @@ namespace ICClient {  	class Basket : public QAbstractListModel  	{  		Q_OBJECT +		Q_PROPERTY(int rowCount READ rowCount NOTIFY rowCountChanged)  		Q_PROPERTY(double subtotal READ subtotal NOTIFY subtotalChanged)  		Q_PROPERTY(double shipping READ shipping NOTIFY shippingChanged)  		Q_PROPERTY(double totalCost READ totalCost NOTIFY totalCostChanged) -		Q_PROPERTY(int rowCount READ rowCount NOTIFY rowCountChanged)  		public:  			explicit Basket(QObject* parent = nullptr) @@ -45,11 +45,11 @@ namespace ICClient {  				, m_totalCost{.0}  			{} -			int rowCount(QModelIndex const& parent -					= QModelIndex()) const Q_DECL_OVERRIDE;  			QVariant data(const QModelIndex& index  					, int role = Qt::DisplayRole  					) const Q_DECL_OVERRIDE; +			int rowCount(QModelIndex const& parent +					= QModelIndex()) const Q_DECL_OVERRIDE;  			double subtotal() const { return m_subtotal; }  			double shipping() const { return m_shipping; } @@ -58,14 +58,14 @@ namespace ICClient {  		public slots:  			void update(icclient_ord_order* order); -		protected: -			QHash<int, QByteArray> roleNames() const Q_DECL_OVERRIDE; -  		signals: +			void rowCountChanged();  			void subtotalChanged();  			void shippingChanged();  			void totalCostChanged(); -			void rowCountChanged(); + +		protected: +			QHash<int, QByteArray> roleNames() const Q_DECL_OVERRIDE;  		private:  			void addItem(Item const& item); |