Skip to content

Commit

Permalink
fix: adjust the order of new added vfunc and version bump
Browse files Browse the repository at this point in the history
avoid an ABI issue.

Log: as above.
  • Loading branch information
itsXuSt committed Nov 22, 2024
1 parent be0efbb commit fb5f28f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
dde-file-manager (6.5.10) UNRELEASED; urgency=medium
dde-file-manager (6.5.10) unstable; urgency=medium

[ zhangsheng ]
* desktop adapt to Qt6.8

-- zhangsheng <[email protected]> Thu, 21 Nov 2024 17:11:48 +0800
[ XuShitong ]
* fix AbstractBaseView ABI issue.

-- XuShitong <[email protected]> Fri, 22 Nov 2024 13:35:06 +0800

dde-file-manager (6.5.9) unstable; urgency=medium

Expand Down
2 changes: 1 addition & 1 deletion include/dfm-base/interfaces/abstractbaseview.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ class AbstractBaseView
void deleteLater();

virtual QWidget *widget() const = 0;
virtual QWidget *contentWidget() const;
virtual QUrl rootUrl() const = 0;
virtual ViewState viewState() const;
virtual bool setRootUrl(const QUrl &url) = 0;
virtual QList<QAction *> toolBarActionList() const;
virtual QList<QUrl> selectedUrlList() const;
virtual void refresh();
virtual QWidget *contentWidget() const;

protected:
void notifyStateChanged();
Expand Down

0 comments on commit fb5f28f

Please sign in to comment.